Blame view

3rdparty/opencv-4.5.4/modules/imgproc/CMakeLists.txt 994 Bytes
f4334277   Hu Chunming   提交3rdparty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  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)
  
  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()