mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 11:10:21 +08:00
81cc89a3ce
* core:add OPENCV_IPP_MEAN/MINMAX/SUM option to enable IPP optimizations * fix: to use guard HAVE_IPP and ocv_append_source_file_compile_definitions() macro. * support OPENCV_IPP_ENABLE_ALL * add document for OPENCV_IPP_ENABLE_ALL * fix OPENCV_IPP_ENABLE_ALL comment
22 lines
1.0 KiB
CMake
22 lines
1.0 KiB
CMake
set(the_description "Image Processing")
|
|
ocv_add_dispatched_file(accum SSE4_1 AVX AVX2)
|
|
ocv_add_dispatched_file(bilateral_filter SSE2 AVX2)
|
|
ocv_add_dispatched_file(box_filter SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(filter SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(color_hsv SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(color_rgb SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(color_yuv SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(median_blur SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(morph SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(smooth SSE2 SSE4_1 AVX2)
|
|
ocv_add_dispatched_file(sumpixels SSE2 AVX2 AVX512_SKX)
|
|
ocv_define_module(imgproc opencv_core WRAP java objc python js)
|
|
|
|
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()
|