Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
711 B
16 lines
711 B
# ---------------------------------------------------------------------------- |
|
# CMake file for Matlab/Octave support |
|
# ---------------------------------------------------------------------------- |
|
|
|
# make sure we're on a supported architecture with Matlab installed |
|
if (IOS OR ANDROID OR NOT MATLAB_FOUND) |
|
ocv_module_disable(matlab) |
|
endif() |
|
|
|
set(the_description "The Matlab/Octave bindings") |
|
ocv_add_module(matlab BINDINGS opencv_core opencv_imgproc |
|
OPTIONAL opencv_objdetect opencv_features2d opencv_video |
|
opencv_highgui opencv_ml opencv_calib3d opencv_photo |
|
opencv_nonfree opencv_calib) |
|
|
|
add_subdirectory(test)
|
|
|