parent
79122d67f4
commit
a96a930f12
15 changed files with 60 additions and 1 deletions
@ -1,2 +1,6 @@ |
||||
set(the_description "Custom Calibration Pattern") |
||||
if(ARM AND CV_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0) |
||||
# suppress warnings from GCC only on 7.1 and later |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-psabi) |
||||
endif() |
||||
ocv_define_module(ccalib opencv_core opencv_imgproc opencv_calib3d opencv_features2d opencv_highgui WRAP python) |
||||
|
@ -1,5 +1,8 @@ |
||||
set(the_description "Object Detection using CNNs") |
||||
|
||||
if(ARM AND CV_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0) |
||||
# suppress warnings from GCC only on 7.1 and later |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-psabi) |
||||
endif() |
||||
ocv_define_module(dnn_objdetect opencv_core opencv_imgproc opencv_dnn |
||||
OPTIONAL opencv_highgui opencv_imgcodecs # samples |
||||
) |
||||
|
@ -1,2 +1,6 @@ |
||||
set(the_description "Line descriptor") |
||||
if(ARM AND CV_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0) |
||||
# suppress warnings from GCC only on 7.1 and later |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-psabi) |
||||
endif() |
||||
ocv_define_module(line_descriptor opencv_imgproc OPTIONAL opencv_features2d WRAP python) |
||||
|
@ -1,2 +1,6 @@ |
||||
set(the_description "Optical Flow Algorithms") |
||||
if(ARM AND CV_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0) |
||||
# suppress warnings from GCC only on 7.1 and later |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-psabi) |
||||
endif() |
||||
ocv_define_module(optflow opencv_core opencv_imgproc opencv_video opencv_ximgproc opencv_imgcodecs opencv_flann WRAP python) |
||||
|
@ -1,2 +1,6 @@ |
||||
set(the_description "RGBD algorithms") |
||||
if(ARM AND CV_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0) |
||||
# suppress warnings from GCC only on 7.1 and later |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-psabi) |
||||
endif() |
||||
ocv_define_module(rgbd opencv_core opencv_calib3d opencv_imgproc WRAP python) |
||||
|
@ -1,3 +1,7 @@ |
||||
set(the_description "Tracking API") |
||||
ocv_define_module(tracking opencv_imgproc opencv_core opencv_video opencv_plot OPTIONAL opencv_dnn opencv_datasets WRAP java python) |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-shadow /wd4458) |
||||
if(ARM AND CV_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0) |
||||
# suppress warnings from GCC only on 7.1 and later |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-psabi) |
||||
endif() |
||||
|
@ -1,2 +1,6 @@ |
||||
set(the_description "Extended image processing module. It includes edge-aware filters and etc.") |
||||
if(ARM AND CV_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0) |
||||
# suppress warnings from GCC only on 7.1 and later |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-psabi) |
||||
endif() |
||||
ocv_define_module(ximgproc opencv_core opencv_imgproc opencv_calib3d opencv_imgcodecs WRAP python java) |
||||
|
@ -1,2 +1,6 @@ |
||||
set(the_description "Addon to basic photo module") |
||||
if(ARM AND CV_GCC AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0) |
||||
# suppress warnings from GCC only on 7.1 and later |
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wno-psabi) |
||||
endif() |
||||
ocv_define_module(xphoto opencv_core opencv_imgproc opencv_photo WRAP python java) |
||||
|
Loading…
Reference in new issue