mirror of https://github.com/opencv/opencv.git
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.
37 lines
1.4 KiB
37 lines
1.4 KiB
project(traincascade) |
|
|
|
include_directories( |
|
"${CMAKE_CURRENT_SOURCE_DIR}" |
|
"${CMAKE_SOURCE_DIR}/modules/core/include" |
|
"${CMAKE_SOURCE_DIR}/modules/imgproc/include" |
|
"${CMAKE_SOURCE_DIR}/modules/objdetect/include" |
|
"${CMAKE_SOURCE_DIR}/modules/ml/include" |
|
"${CMAKE_SOURCE_DIR}/modules/highgui/include" |
|
"${CMAKE_SOURCE_DIR}/modules/video/include" |
|
"${CMAKE_SOURCE_DIR}/modules/features2d/include" |
|
"${CMAKE_SOURCE_DIR}/modules/flann/include" |
|
"${CMAKE_SOURCE_DIR}/modules/calib3d/include" |
|
"${CMAKE_SOURCE_DIR}/modules/legacy/include" |
|
) |
|
|
|
set(traincascade_libs opencv_core opencv_ml opencv_imgproc |
|
opencv_objdetect opencv_highgui opencv_haartraining_engine) |
|
|
|
set(traincascade_files traincascade.cpp |
|
cascadeclassifier.cpp cascadeclassifier.h |
|
boost.cpp boost.h features.cpp traincascade_features.h |
|
haarfeatures.cpp haarfeatures.h |
|
lbpfeatures.cpp lbpfeatures.h |
|
imagestorage.cpp imagestorage.h) |
|
|
|
set(the_target opencv_traincascade) |
|
add_executable(${the_target} ${traincascade_files}) |
|
|
|
add_dependencies(${the_target} ${traincascade_libs}) |
|
set_target_properties(${the_target} PROPERTIES |
|
DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}" |
|
OUTPUT_NAME "opencv_traincascade") |
|
|
|
target_link_libraries(${the_target} ${traincascade_libs}) |
|
|
|
install(TARGETS ${the_target} RUNTIME DESTINATION bin COMPONENT main)
|
|
|