2012-02-03 19:26:49 +08:00
|
|
|
set(the_description "Image Processing")
|
2018-10-03 02:44:03 +08:00
|
|
|
ocv_add_dispatched_file(accum SSE4_1 AVX AVX2)
|
2019-03-10 03:58:48 +08:00
|
|
|
ocv_add_dispatched_file(bilateral_filter SSE2 AVX2)
|
2019-03-10 04:19:05 +08:00
|
|
|
ocv_add_dispatched_file(box_filter SSE2 SSE4_1 AVX2)
|
2019-03-09 20:21:23 +08:00
|
|
|
ocv_add_dispatched_file(filter SSE2 SSE4_1 AVX2)
|
2019-03-07 18:25:37 +08:00
|
|
|
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)
|
2019-03-10 02:55:42 +08:00
|
|
|
ocv_add_dispatched_file(median_blur SSE2 SSE4_1 AVX2)
|
2019-03-11 20:37:17 +08:00
|
|
|
ocv_add_dispatched_file(morph SSE2 SSE4_1 AVX2)
|
2019-03-10 03:20:24 +08:00
|
|
|
ocv_add_dispatched_file(smooth SSE2 SSE4_1 AVX2)
|
2020-01-17 21:54:08 +08:00
|
|
|
ocv_add_dispatched_file(sumpixels SSE2 AVX2 AVX512_SKX)
|
2020-06-09 02:32:53 +08:00
|
|
|
ocv_define_module(imgproc opencv_core WRAP java objc python js)
|
2020-04-17 02:17:22 +08:00
|
|
|
|
|
|
|
ocv_check_environment_variables(OPENCV_IPP_GAUSSIAN_BLUR)
|
|
|
|
option(OPENCV_IPP_GAUSSIAN_BLUR "Enable IPP optimizations for GaussianBlur (+8Mb in binary size)" OFF)
|
|
|
|
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()
|