mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 06:03:15 +08:00
renamed gpustereo -> cudastereo
This commit is contained in:
parent
d4901a99ea
commit
71d61e07b1
9
modules/cudastereo/CMakeLists.txt
Normal file
9
modules/cudastereo/CMakeLists.txt
Normal file
@ -0,0 +1,9 @@
|
||||
if(ANDROID OR IOS)
|
||||
ocv_module_disable(cudastereo)
|
||||
endif()
|
||||
|
||||
set(the_description "CUDA-accelerated Stereo Correspondence")
|
||||
|
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations)
|
||||
|
||||
ocv_define_module(cudastereo opencv_calib3d)
|
@ -40,11 +40,11 @@
|
||||
//
|
||||
//M*/
|
||||
|
||||
#ifndef __OPENCV_GPUSTEREO_HPP__
|
||||
#define __OPENCV_GPUSTEREO_HPP__
|
||||
#ifndef __OPENCV_CUDASTEREO_HPP__
|
||||
#define __OPENCV_CUDASTEREO_HPP__
|
||||
|
||||
#ifndef __cplusplus
|
||||
# error gpustereo.hpp header must be compiled as C++
|
||||
# error cudastereo.hpp header must be compiled as C++
|
||||
#endif
|
||||
|
||||
#include "opencv2/core/cuda.hpp"
|
||||
@ -190,4 +190,4 @@ CV_EXPORTS void drawColorDisp(InputArray src_disp, OutputArray dst_disp, int ndi
|
||||
|
||||
}} // namespace cv { namespace cuda {
|
||||
|
||||
#endif /* __OPENCV_GPUSTEREO_HPP__ */
|
||||
#endif /* __OPENCV_CUDASTEREO_HPP__ */
|
@ -44,4 +44,4 @@
|
||||
|
||||
using namespace perf;
|
||||
|
||||
CV_PERF_TEST_CUDA_MAIN(gpustereo)
|
||||
CV_PERF_TEST_CUDA_MAIN(cudastereo)
|
@ -54,7 +54,7 @@
|
||||
#include "opencv2/ts.hpp"
|
||||
#include "opencv2/ts/gpu_perf.hpp"
|
||||
|
||||
#include "opencv2/gpustereo.hpp"
|
||||
#include "opencv2/cudastereo.hpp"
|
||||
#include "opencv2/calib3d.hpp"
|
||||
|
||||
#ifdef GTEST_CREATE_SHARED_LIBRARY
|
@ -45,7 +45,7 @@
|
||||
|
||||
#include <limits>
|
||||
|
||||
#include "opencv2/gpustereo.hpp"
|
||||
#include "opencv2/cudastereo.hpp"
|
||||
|
||||
#include "opencv2/core/private.cuda.hpp"
|
||||
#include "opencv2/core/utility.hpp"
|
@ -54,7 +54,7 @@
|
||||
#include "opencv2/ts.hpp"
|
||||
#include "opencv2/ts/gpu_test.hpp"
|
||||
|
||||
#include "opencv2/gpustereo.hpp"
|
||||
#include "opencv2/cudastereo.hpp"
|
||||
#include "opencv2/calib3d.hpp"
|
||||
|
||||
#include "cvconfig.h"
|
@ -1,9 +0,0 @@
|
||||
if(ANDROID OR IOS)
|
||||
ocv_module_disable(gpustereo)
|
||||
endif()
|
||||
|
||||
set(the_description "GPU-accelerated Stereo Correspondence")
|
||||
|
||||
ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations)
|
||||
|
||||
ocv_define_module(gpustereo opencv_calib3d)
|
@ -4,7 +4,7 @@ SET(OPENCV_GPU_SAMPLES_REQUIRED_DEPS opencv_core opencv_flann opencv_imgproc ope
|
||||
opencv_nonfree opencv_softcascade opencv_superres
|
||||
opencv_cudaarithm opencv_gpufilters opencv_cudawarping opencv_gpuimgproc
|
||||
opencv_gpufeatures2d opencv_gpuoptflow opencv_gpubgsegm
|
||||
opencv_gpustereo opencv_cudalegacy)
|
||||
opencv_cudastereo opencv_cudalegacy)
|
||||
|
||||
ocv_check_dependencies(${OPENCV_GPU_SAMPLES_REQUIRED_DEPS})
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "cvconfig.h"
|
||||
#include "opencv2/core/core.hpp"
|
||||
#include "opencv2/highgui/highgui.hpp"
|
||||
#include "opencv2/gpustereo.hpp"
|
||||
#include "opencv2/cudastereo.hpp"
|
||||
|
||||
#ifdef HAVE_TBB
|
||||
# include "tbb/tbb_stddef.h"
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include <iomanip>
|
||||
#include <stdexcept>
|
||||
#include <opencv2/core/utility.hpp>
|
||||
#include "opencv2/gpustereo.hpp"
|
||||
#include "opencv2/cudastereo.hpp"
|
||||
#include "opencv2/highgui.hpp"
|
||||
#include "opencv2/imgproc.hpp"
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "cvconfig.h"
|
||||
#include "opencv2/core.hpp"
|
||||
#include "opencv2/highgui.hpp"
|
||||
#include "opencv2/gpustereo.hpp"
|
||||
#include "opencv2/cudastereo.hpp"
|
||||
|
||||
#ifdef HAVE_TBB
|
||||
# include "tbb/tbb_stddef.h"
|
||||
|
Loading…
Reference in New Issue
Block a user