mirror of
https://github.com/opencv/opencv.git
synced 2026-09-11 04:43:22 -05:00
- Add fused single-pass spatialGradient kernels with runtime SIMD dispatch. - Add dispatched SIMD Canny edge path (canny.dispatch.cpp, canny.simd.hpp). - Route corner, Canny, and IntelligentScissors gradients through spatialGradient. - Extend spatialGradient ksize support to 1 via Sobel fallback; gate fused paths to 3/5. - Extend fused_accuracy ROI tests to ksize 1, 3, and 5 (borders, CV_16S/CV_32F).
31 lines
1.6 KiB
CMake
31 lines
1.6 KiB
CMake
set(the_description "Image Processing")
|
|
ocv_add_dispatched_file(accum SSE4_1 AVX AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(bilateral_filter SSE2 AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(box_filter SSE2 SSE4_1 AVX2 AVX512_SKX)
|
|
ocv_add_dispatched_file(canny SSE4_1 AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(filter SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(color_hsv SSE2 SSE4_1 AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(color_rgb SSE2 SSE4_1 AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(color_yuv SSE2 SSE4_1 AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(median_blur SSE2 SSE4_1 AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(spatialgradient SSE4_1 AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(morph SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(smooth SSE2 SSE4_1 AVX2 AVX512_ICL)
|
|
ocv_add_dispatched_file(sumpixels SSE2 AVX2 AVX512_SKX)
|
|
ocv_add_dispatched_file(equalize_hist AVX512_ICL)
|
|
ocv_add_dispatched_file(imgwarp SSE4_1 AVX2 AVX512_SKX AVX512_ICL)
|
|
ocv_add_dispatched_file(pyramids_avx512_vbmi AVX512_ICL)
|
|
ocv_define_module(imgproc opencv_core WRAP java objc python js)
|
|
|
|
if(OPENCV_CORE_EXCLUDE_C_API)
|
|
ocv_target_compile_definitions(${the_module} PRIVATE "OPENCV_EXCLUDE_C_API=1")
|
|
endif()
|
|
|
|
if(HAVE_IPP)
|
|
# OPENCV_IPP_ENABLE_ALL is defined in modules/core/CMakeList.txt
|
|
OCV_OPTION(OPENCV_IPP_GAUSSIAN_BLUR "Enable IPP optimizations for GaussianBlur (+8Mb in binary size)" OPENCV_IPP_ENABLE_ALL)
|
|
if(OPENCV_IPP_GAUSSIAN_BLUR)
|
|
ocv_append_source_file_compile_definitions(${CMAKE_CURRENT_SOURCE_DIR}/src/smooth.dispatch.cpp "ENABLE_IPP_GAUSSIAN_BLUR=1")
|
|
endif()
|
|
endif()
|