Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
90780db9
Commit
90780db9
authored
Aug 13, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge moved code from opencv
parents
dccdaae2
a7417334
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
modules/cudalegacy/CMakeLists.txt
+1
-1
CMakeLists.txt
modules/cudaobjdetect/CMakeLists.txt
+1
-1
hog.cu
modules/cudaobjdetect/src/cuda/hog.cu
+1
-1
CMakeLists.txt
modules/cudaoptflow/CMakeLists.txt
+1
-1
No files found.
modules/cudalegacy/CMakeLists.txt
View file @
90780db9
...
...
@@ -4,7 +4,7 @@ endif()
set
(
the_description
"CUDA-accelerated Computer Vision (legacy)"
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4127 /wd4130 /wd4324 /wd4512 /wd4310 -Wundef -Wmissing-declarations -Wuninitialized -Wshadow
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4127 /wd4130 /wd4324 /wd4512 /wd4310 -Wundef -Wmissing-declarations -Wuninitialized -Wshadow
-Wdeprecated-declarations -Wstrict-aliasing -Wtautological-compare
)
ocv_define_module
(
cudalegacy opencv_core opencv_video
OPTIONAL opencv_objdetect opencv_imgproc opencv_calib3d opencv_cudaarithm opencv_cudafilters opencv_cudaimgproc
)
modules/cudaobjdetect/CMakeLists.txt
View file @
90780db9
...
...
@@ -4,6 +4,6 @@ endif()
set
(
the_description
"CUDA-accelerated Object Detection"
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations -Wshadow
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations -Wshadow
-Wstrict-aliasing
)
ocv_define_module
(
cudaobjdetect opencv_objdetect opencv_cudaarithm opencv_cudawarping OPTIONAL opencv_cudalegacy WRAP python
)
modules/cudaobjdetect/src/cuda/hog.cu
View file @
90780db9
...
...
@@ -448,7 +448,7 @@ namespace cv { namespace cuda { namespace device
compute_confidence_hists_kernel_many_blocks<nthreads, nblocks><<<grid, threads>>>(
img_win_width, img_block_width, win_block_stride_x, win_block_stride_y,
block_hists, coefs, free_coef, threshold, confidences);
cudaSafeCall(cuda
Thread
Synchronize());
cudaSafeCall(cuda
Device
Synchronize());
}
...
...
modules/cudaoptflow/CMakeLists.txt
View file @
90780db9
...
...
@@ -4,7 +4,7 @@ endif()
set
(
the_description
"CUDA-accelerated Optical Flow"
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations -Wshadow
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef -Wmissing-declarations -Wshadow
-Wstrict-aliasing
)
ocv_define_module
(
cudaoptflow opencv_video opencv_optflow opencv_cudaarithm opencv_cudawarping opencv_cudaimgproc OPTIONAL opencv_cudalegacy WRAP python
)
...
...
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