forked from hbristow/cvmatio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
23 lines (18 loc) · 858 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-------------------------------------------------------------------------------
CVMATIO
An open source Matlab-MAT file parser written in C++
-------------------------------------------------------------------------------
CVMATIO implements a Matlab v7 MAT file parser in C++, giving users the
ability to interact with binary MAT files in their own projects.
The project has the following dependencies:
OpenCV REQUIRED (for translating Matlab types)
CMake REQUIRED (for building)
ZLib REQUIRED (for uncompressing Mat files)
Doxygen OPTIONAL (for documentation)
BUILDING
To configure the project, set the options at the top of CMakeLists.txt
To build the project, follow the normal cmake routine from the root folder:
>> mkdir build
>> cd build/
>> cmake ..
>> make -j8