mirror of
https://github.com/opencv/opencv.git
synced 2024-11-28 21:20:18 +08:00
ed6ca0d7fa
Fix support objdetect module for UWP * Fix support objdetect module for UWP * Fix define module for objdetect * Remove conditional compilation from public headers * Add StsNotImplemented for FaceDetectorYN/FaceRecognizerSF * Fix typo error message * Fix error message * coding style, eliminate warnings
20 lines
404 B
CMake
20 lines
404 B
CMake
set(the_description "Object Detection")
|
|
ocv_define_module(objdetect
|
|
opencv_core
|
|
opencv_imgproc
|
|
opencv_calib3d
|
|
OPTIONAL
|
|
opencv_dnn
|
|
WRAP
|
|
python
|
|
java
|
|
objc
|
|
js
|
|
)
|
|
|
|
if(HAVE_QUIRC)
|
|
get_property(QUIRC_INCLUDE GLOBAL PROPERTY QUIRC_INCLUDE_DIR)
|
|
ocv_include_directories(${QUIRC_INCLUDE})
|
|
ocv_target_link_libraries(${the_module} quirc)
|
|
endif()
|