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
d27141ab
Commit
d27141ab
authored
Aug 27, 2014
by
StevenPuttemans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing further nonfree elements
parent
071eb5a7
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
12 deletions
+12
-12
CMakeLists.txt
modules/matlab/CMakeLists.txt
+1
-1
map_test.cpp
modules/reg/samples/map_test.cpp
+1
-1
nonfree_features.rst
modules/xfeatures2d/doc/nonfree_features.rst
+1
-1
cuda.hpp
modules/xfeatures2d/include/opencv2/xfeatures2d/cuda.hpp
+3
-3
nonfree.hpp
modules/xfeatures2d/include/opencv2/xfeatures2d/nonfree.hpp
+2
-2
perf_main.cpp
modules/xfeatures2d/perf/perf_main.cpp
+1
-1
precomp.hpp
modules/xfeatures2d/src/precomp.hpp
+1
-1
surf.hpp
modules/xfeatures2d/src/surf.hpp
+2
-2
No files found.
modules/matlab/CMakeLists.txt
View file @
d27141ab
...
...
@@ -91,7 +91,7 @@ ocv_add_module(matlab BINDINGS
opencv_photo opencv_video opencv_videostab
opencv_calib opencv_calib3d
opencv_stitching opencv_superres
opencv_
nonfree
opencv_
xfeatures2d
)
# get the commit information
...
...
modules/reg/samples/map_test.cpp
View file @
d27141ab
...
...
@@ -47,7 +47,7 @@
#include <opencv2/highgui/highgui_c.h>
#ifdef COMPARE_FEATURES
#include <opencv2/nonfree.hpp>
#include <opencv2/
xfeatures2d/
nonfree.hpp>
#include <opencv2/calib3d.hpp>
#include <opencv2/calib3d/calib3d_c.h>
#endif
...
...
modules/xfeatures2d/doc/nonfree_features.rst
View file @
d27141ab
...
...
@@ -143,7 +143,7 @@ Detects keypoints and computes SURF descriptors for them.
The function is parallelized with the TBB library.
If you are using the C version, make sure you call ``cv::initModule_
nonfree()`` from ``nonfree
/nonfree.hpp``.
If you are using the C version, make sure you call ``cv::initModule_
xfeatures2d()`` from ``xfeatures2d
/nonfree.hpp``.
cuda::SURF_CUDA
...
...
modules/xfeatures2d/include/opencv2/xfeatures2d/cuda.hpp
View file @
d27141ab
...
...
@@ -40,8 +40,8 @@
//
//M*/
#ifndef __OPENCV_
NONFREE
_CUDA_HPP__
#define __OPENCV_
NONFREE
_CUDA_HPP__
#ifndef __OPENCV_
XFEATURES2D
_CUDA_HPP__
#define __OPENCV_
XFEATURES2D
_CUDA_HPP__
#include "opencv2/core/cuda.hpp"
...
...
@@ -125,4 +125,4 @@ public:
}}
// namespace cv { namespace cuda {
#endif // __OPENCV_
NONFREE
_CUDA_HPP__
#endif // __OPENCV_
XFEATURES2D
_CUDA_HPP__
modules/xfeatures2d/include/opencv2/xfeatures2d/nonfree.hpp
View file @
d27141ab
...
...
@@ -40,8 +40,8 @@
//
//M*/
#ifndef __OPENCV_
NONFREE
_FEATURES_2D_HPP__
#define __OPENCV_
NONFREE
_FEATURES_2D_HPP__
#ifndef __OPENCV_
XFEATURES2D
_FEATURES_2D_HPP__
#define __OPENCV_
XFEATURES2D
_FEATURES_2D_HPP__
#include "opencv2/features2d.hpp"
...
...
modules/xfeatures2d/perf/perf_main.cpp
View file @
d27141ab
...
...
@@ -8,4 +8,4 @@ static const char * impls[] = {
"plain"
};
CV_PERF_TEST_MAIN_WITH_IMPLS
(
nonfree
,
impls
,
perf
::
printCudaInfo
())
CV_PERF_TEST_MAIN_WITH_IMPLS
(
xfeatures2d
,
impls
,
perf
::
printCudaInfo
())
modules/xfeatures2d/src/precomp.hpp
View file @
d27141ab
...
...
@@ -52,7 +52,7 @@
#include "opencv2/core/private.hpp"
#include "opencv2/core/private.cuda.hpp"
//#include "opencv2/
nonfree
/cuda.hpp"
//#include "opencv2/
xfeatures2d
/cuda.hpp"
//#include "opencv2/core/private.cuda.hpp"
#include "opencv2/core/ocl.hpp"
...
...
modules/xfeatures2d/src/surf.hpp
View file @
d27141ab
///////////// see LICENSE.txt in the OpenCV root directory //////////////
#ifndef __OPENCV_
NONFREE
_SURF_HPP__
#define __OPENCV_
NONFREE
_SURF_HPP__
#ifndef __OPENCV_
XFEATURES2D
_SURF_HPP__
#define __OPENCV_
XFEATURES2D
_SURF_HPP__
namespace
cv
{
...
...
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