mirror of
https://github.com/opencv/opencv.git
synced 2026-07-28 23:03:03 +04:00
b0b77e7b32
Added DISK feature extractor support #29073 closes: https://github.com/opencv/opencv/issues/27083 Merge with: https://github.com/opencv/opencv_extra/pull/1368/ ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [x] There is a reference to the original bug report and related work - [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [x] The feature is well documented and sample code can be built with the project CMake
13 lines
527 B
CMake
13 lines
527 B
CMake
set(the_description "Features Framework")
|
|
|
|
ocv_add_dispatched_file(sift SSE4_1 AVX2 AVX512_SKX)
|
|
|
|
set(debug_modules "")
|
|
if(DEBUG_opencv_features)
|
|
list(APPEND debug_modules opencv_highgui)
|
|
endif()
|
|
ocv_define_module(features opencv_imgproc opencv_geometry ${debug_modules} OPTIONAL opencv_flann opencv_dnn WRAP java objc python js)
|
|
|
|
ocv_install_3rdparty_licenses(mscr "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/mscr/chi_table_LICENSE.txt")
|
|
ocv_install_3rdparty_licenses(annoylib "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/annoy/LICENSE")
|