mirror of
https://github.com/opencv/opencv.git
synced 2025-01-10 22:28:13 +08:00
614e250fd3
Rename features2d #26405 This PR renames the module _features2d_ to _features_ as one of the Big OpenCV Cleanup #25007. Related PR: opencv/opencv_contrib: [#3820](https://github.com/opencv/opencv_contrib/pull/3820) opencv/ci-gha-workflow: [#192](https://github.com/opencv/ci-gha-workflow/pull/192)
14 lines
598 B
CMake
14 lines
598 B
CMake
set(the_description "Images stitching")
|
|
|
|
if(HAVE_CUDA)
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef -Wmissing-declarations -Wshadow -Wstrict-aliasing)
|
|
endif()
|
|
|
|
set(STITCHING_CONTRIB_DEPS "opencv_xfeatures2d")
|
|
if(BUILD_SHARED_LIBS AND BUILD_opencv_world AND OPENCV_WORLD_EXCLUDE_EXTRA_MODULES)
|
|
set(STITCHING_CONTRIB_DEPS "")
|
|
endif()
|
|
ocv_define_module(stitching opencv_imgproc opencv_features opencv_3d opencv_flann
|
|
OPTIONAL opencv_cudaarithm opencv_cudawarping opencv_cudafeatures2d opencv_cudalegacy opencv_cudaimgproc ${STITCHING_CONTRIB_DEPS}
|
|
WRAP python)
|