Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
7ac0d869
Commit
7ac0d869
authored
Apr 08, 2013
by
Andrey Kamaev
Committed by
OpenCV Buildbot
Apr 08, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #786 from cuda-geek:fix-build-gpu-off-cuda-on
parents
058a9ab1
780a8cc1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
29 deletions
+8
-29
CMakeLists.txt
modules/nonfree/CMakeLists.txt
+1
-25
surf.cu
modules/nonfree/src/cuda/surf.cu
+3
-1
vibe.cu
modules/nonfree/src/cuda/vibe.cu
+4
-3
No files found.
modules/nonfree/CMakeLists.txt
View file @
7ac0d869
...
...
@@ -3,28 +3,4 @@ if(BUILD_ANDROID_PACKAGE)
endif
()
set
(
the_description
"Functionality with possible limitations on the use"
)
ocv_add_module
(
nonfree opencv_imgproc opencv_features2d opencv_calib3d OPTIONAL opencv_gpu opencv_ocl
)
ocv_module_include_directories
()
if
(
HAVE_CUDA AND HAVE_opencv_gpu
)
ocv_source_group
(
"Src
\\
Cuda"
GLOB
"src/cuda/*.cu"
)
ocv_include_directories
(
"
${
OpenCV_SOURCE_DIR
}
/modules/gpu/include"
${
CUDA_INCLUDE_DIRS
}
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wundef
)
file
(
GLOB lib_cuda
"src/cuda/*.cu"
)
ocv_cuda_compile
(
cuda_objs
${
lib_cuda
}
)
set
(
cuda_link_libs
${
CUDA_LIBRARIES
}
${
CUDA_npp_LIBRARY
}
)
else
()
set
(
lib_cuda
""
)
set
(
cuda_objs
""
)
set
(
cuda_link_libs
""
)
endif
()
ocv_glob_module_sources
(
SOURCES
${
lib_cuda
}
${
cuda_objs
}
)
ocv_create_module
(
${
cuda_link_libs
}
)
ocv_add_precompiled_headers
(
${
the_module
}
)
ocv_add_accuracy_tests
()
ocv_add_perf_tests
()
ocv_define_module
(
nonfree opencv_imgproc opencv_features2d opencv_calib3d OPTIONAL opencv_gpu opencv_ocl
)
modules/nonfree/src/cuda/surf.cu
View file @
7ac0d869
...
...
@@ -40,7 +40,9 @@
//
//M*/
#if !defined CUDA_DISABLER
#include "opencv2/opencv_modules.hpp"
#ifdef HAVE_OPENCV_GPU
#include "opencv2/gpu/device/common.hpp"
#include "opencv2/gpu/device/limits.hpp"
...
...
modules/nonfree/src/cuda/vibe.cu
View file @
7ac0d869
...
...
@@ -40,7 +40,9 @@
//
//M*/
#if !defined CUDA_DISABLER
#include "opencv2/opencv_modules.hpp"
#ifdef HAVE_OPENCV_GPU
#include "opencv2/gpu/device/common.hpp"
...
...
@@ -266,5 +268,4 @@ namespace cv { namespace gpu { namespace device
}
}}}
#endif /* CUDA_DISABLER */
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment