Updated README
This commit is contained in:
parent
8cd48cf35a
commit
9b32c6e653
17
README.md
17
README.md
@ -4,19 +4,14 @@ An open source computer vision library
|
|||||||
|
|
||||||
Matlab Generator
|
Matlab Generator
|
||||||
----------------
|
----------------
|
||||||
This project is a fork of OpenCV (https://github.com/Itseez/opencv/) with a matlab module for automagically generating Matlab bindings. Once complete, this branch will be merged into the OpenCV 3.x master.
|
This project is a fork of OpenCV (https://github.com/Itseez/opencv/) with a matlab module for automatically generating Matlab bindings. Once complete, this branch will be merged into the OpenCV 3.x master.
|
||||||
|
|
||||||
This project is currently, and always will be, in a semi-working state. When the project is stable it will be merged, and this fork deleted.
|
This project is currently, and always will be, in a semi-working state. When the project is stable and merged, this fork will be deleted. Thus, this repository stands as a point to share progress with the community, host a bugtracker for bug reports and (public!) feature requests, and enable discussion about design decisions.
|
||||||
|
|
||||||
Features
|
|
||||||
--------
|
|
||||||
If you have any feature requests, please file them through the tracker
|
|
||||||
|
|
||||||
GSOC
|
GSOC
|
||||||
----
|
----
|
||||||
This project repesents my GSOC project for 2013. You can find more details about my proposal in proposal.pdf in the root
|
This project repesents my Google Summer of Code (GSOC) project for 2013.
|
||||||
|
You can find more details about my proposal in proposal.pdf in the root.
|
||||||
|
|
||||||
|
**Keywords**
|
||||||
|
opencv, matlab, bindings, code, generator, GSOC, mex, C++, wrappers
|
||||||
|
|
||||||
Hilton
|
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#
|
#
|
||||||
# MATLAB_FOUND: true/false
|
# MATLAB_FOUND: true/false
|
||||||
# MATLAB_ROOT_DIR: Root of Matlab installation
|
# MATLAB_ROOT_DIR: Root of Matlab installation
|
||||||
|
# MATLAB_BIN: The main Matlab "executable" (shell script)
|
||||||
# MATLAB_MEX_SCRIPT: The mex script used to compile mex files
|
# MATLAB_MEX_SCRIPT: The mex script used to compile mex files
|
||||||
# MATLAB_BIN: The actual Matlab executable
|
# MATLAB_BIN: The actual Matlab executable
|
||||||
# MATLAB_INCLUDE_DIR: Path to "mex.h"
|
# MATLAB_INCLUDE_DIR: Path to "mex.h"
|
||||||
@ -37,6 +38,7 @@ function(locate_matlab_root)
|
|||||||
foreach (DIR_ ${SEARCH_DIRS_})
|
foreach (DIR_ ${SEARCH_DIRS_})
|
||||||
file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/*matlab*)
|
file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/*matlab*)
|
||||||
if (MATLAB_ROOT_DIR_)
|
if (MATLAB_ROOT_DIR_)
|
||||||
|
# sort in order from highest to lowest
|
||||||
list(SORT MATLAB_ROOT_DIR_)
|
list(SORT MATLAB_ROOT_DIR_)
|
||||||
list(REVERSE MATLAB_ROOT_DIR_)
|
list(REVERSE MATLAB_ROOT_DIR_)
|
||||||
list(GET MATLAB_ROOT_DIR_ 0 MATLAB_ROOT_DIR_)
|
list(GET MATLAB_ROOT_DIR_ 0 MATLAB_ROOT_DIR_)
|
||||||
@ -51,6 +53,8 @@ function(locate_matlab_root)
|
|||||||
foreach (DIR_ ${SEARCH_DIRS_})
|
foreach (DIR_ ${SEARCH_DIRS_})
|
||||||
file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/*matlab*)
|
file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/*matlab*)
|
||||||
if (MATLAB_ROOT_DIR_)
|
if (MATLAB_ROOT_DIR_)
|
||||||
|
# sort in order from highest to lowest
|
||||||
|
# normally it's in the format MATLAB_R[20XX][A/B]
|
||||||
list(SORT MATLAB_ROOT_DIR_)
|
list(SORT MATLAB_ROOT_DIR_)
|
||||||
list(REVERSE MATLAB_ROOT_DIR_)
|
list(REVERSE MATLAB_ROOT_DIR_)
|
||||||
list(GET MATLAB_ROOT_DIR_ 0 MATLAB_ROOT_DIR_)
|
list(GET MATLAB_ROOT_DIR_ 0 MATLAB_ROOT_DIR_)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user