mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 12:10:49 +08:00
d58cd9851f
Conflicts: CMakeLists.txt cmake/OpenCVDetectCUDA.cmake doc/tutorials/features2d/feature_flann_matcher/feature_flann_matcher.rst modules/core/src/cmdparser.cpp modules/gpu/CMakeLists.txt modules/gpu/doc/introduction.rst modules/gpu/perf/perf_video.cpp modules/highgui/doc/reading_and_writing_images_and_video.rst modules/ocl/src/cl_context.cpp modules/video/include/opencv2/video/background_segm.hpp samples/cpp/image_sequence.cpp samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp samples/python/chessboard.py samples/python/cvutils.py samples/python/demhist.py samples/python/dft.py samples/python/distrans.py samples/python/edge.py samples/python/ffilldemo.py samples/python/fitellipse.py samples/python/houghlines.py samples/python/inpaint.py samples/python/logpolar.py samples/python/morphology.py samples/python/numpy_array.py samples/python/watershed.py
30 lines
670 B
CMake
30 lines
670 B
CMake
if(IOS)
|
|
ocv_module_disable(cudaarithm)
|
|
endif()
|
|
|
|
set(the_description "CUDA-accelerated Operations on Matrices")
|
|
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations)
|
|
|
|
ocv_add_module(cudaarithm opencv_core OPTIONAL opencv_cudev)
|
|
|
|
ocv_module_include_directories()
|
|
ocv_glob_module_sources()
|
|
|
|
set(extra_libs "")
|
|
|
|
if(HAVE_CUBLAS)
|
|
list(APPEND extra_libs ${CUDA_cublas_LIBRARY})
|
|
endif()
|
|
|
|
if(HAVE_CUFFT)
|
|
list(APPEND extra_libs ${CUDA_cufft_LIBRARY})
|
|
endif()
|
|
|
|
ocv_create_module(${extra_libs})
|
|
|
|
ocv_add_precompiled_headers(${the_module})
|
|
|
|
ocv_add_accuracy_tests(DEPENDS_ON opencv_imgproc)
|
|
ocv_add_perf_tests(DEPENDS_ON opencv_imgproc)
|