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
29e3caf3
Commit
29e3caf3
authored
Jul 27, 2017
by
Suleyman TURKMEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update line_descriptor samples
parent
067b0a63
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
17 additions
and
10 deletions
+17
-10
compute_descriptors.cpp
modules/line_descriptor/samples/compute_descriptors.cpp
+2
-1
knn_matching.cpp
modules/line_descriptor/samples/knn_matching.cpp
+2
-1
lines_extraction.cpp
modules/line_descriptor/samples/lines_extraction.cpp
+2
-1
lsd_lines_extraction.cpp
modules/line_descriptor/samples/lsd_lines_extraction.cpp
+2
-1
matching.cpp
modules/line_descriptor/samples/matching.cpp
+2
-1
radius_matching.cpp
modules/line_descriptor/samples/radius_matching.cpp
+2
-2
CMakeLists.txt
modules/xfeatures2d/CMakeLists.txt
+1
-1
bagofwords_classification.cpp
modules/xfeatures2d/samples/bagofwords_classification.cpp
+1
-1
shape_transformation.cpp
modules/xfeatures2d/samples/shape_transformation.cpp
+2
-1
video_homography.cpp
modules/xfeatures2d/samples/video_homography.cpp
+1
-0
No files found.
modules/line_descriptor/samples/compute_descriptors.cpp
View file @
29e3caf3
...
...
@@ -40,11 +40,12 @@
//M*/
#include <iostream>
#include <opencv2/opencv_modules.hpp>
#ifdef HAVE_OPENCV_FEATURES2D
#include <opencv2/line_descriptor.hpp>
#include
"opencv2/core/utility.hpp"
#include
<opencv2/core/utility.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/features2d.hpp>
#include <opencv2/highgui.hpp>
...
...
modules/line_descriptor/samples/knn_matching.cpp
View file @
29e3caf3
...
...
@@ -40,11 +40,12 @@
//M*/
#include <iostream>
#include <opencv2/opencv_modules.hpp>
#ifdef HAVE_OPENCV_FEATURES2D
#include <opencv2/line_descriptor.hpp>
#include
"opencv2/core/utility.hpp"
#include
<opencv2/core/utility.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/features2d.hpp>
#include <opencv2/highgui.hpp>
...
...
modules/line_descriptor/samples/lines_extraction.cpp
View file @
29e3caf3
...
...
@@ -40,11 +40,12 @@
//M*/
#include <iostream>
#include <opencv2/opencv_modules.hpp>
#ifdef HAVE_OPENCV_FEATURES2D
#include <opencv2/line_descriptor.hpp>
#include
"opencv2/core/utility.hpp"
#include
<opencv2/core/utility.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/features2d.hpp>
#include <opencv2/highgui.hpp>
...
...
modules/line_descriptor/samples/lsd_lines_extraction.cpp
View file @
29e3caf3
...
...
@@ -40,11 +40,12 @@
//M*/
#include <iostream>
#include <opencv2/opencv_modules.hpp>
#ifdef HAVE_OPENCV_FEATURES2D
#include <opencv2/line_descriptor.hpp>
#include
"opencv2/core/utility.hpp"
#include
<opencv2/core/utility.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/features2d.hpp>
#include <opencv2/highgui.hpp>
...
...
modules/line_descriptor/samples/matching.cpp
View file @
29e3caf3
...
...
@@ -40,11 +40,12 @@
//M*/
#include <iostream>
#include <opencv2/opencv_modules.hpp>
#ifdef HAVE_OPENCV_FEATURES2D
#include <opencv2/line_descriptor.hpp>
#include
"opencv2/core/utility.hpp"
#include
<opencv2/core/utility.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/features2d.hpp>
#include <opencv2/highgui.hpp>
...
...
modules/line_descriptor/samples/radius_matching.cpp
View file @
29e3caf3
...
...
@@ -40,12 +40,12 @@
//M*/
#include <iostream>
#include <opencv2/opencv_modules.hpp>
#ifdef HAVE_OPENCV_FEATURES2D
#include <opencv2/line_descriptor.hpp>
#include "opencv2/core/utility.hpp"
#include <opencv2/core/utility.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/features2d.hpp>
#include <opencv2/highgui.hpp>
...
...
modules/xfeatures2d/CMakeLists.txt
View file @
29e3caf3
set
(
the_description
"Contributed/Experimental Algorithms for Salient 2D Features Detection"
)
ocv_define_module
(
xfeatures2d opencv_core opencv_imgproc opencv_features2d opencv_calib3d OPTIONAL opencv_shape opencv_cudaarithm WRAP python java
)
ocv_define_module
(
xfeatures2d opencv_core opencv_imgproc opencv_features2d opencv_calib3d OPTIONAL opencv_shape opencv_
ml opencv_
cudaarithm WRAP python java
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake/download_vgg.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake/download_boostdesc.cmake
)
...
...
modules/xfeatures2d/samples/bagofwords_classification.cpp
View file @
29e3caf3
#include <iostream>
#include "opencv2/opencv_modules.hpp"
#ifdef HAVE_OPENCV_ML
#include "opencv2/opencv_modules.hpp"
#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
...
...
modules/xfeatures2d/samples/shape_transformation.cpp
View file @
29e3caf3
...
...
@@ -2,6 +2,7 @@
* shape_context.cpp -- Shape context demo for shape matching
*/
#include <iostream>
#include "opencv2/opencv_modules.hpp"
#ifdef HAVE_OPENCV_SHAPE
...
...
@@ -11,7 +12,7 @@
#include "opencv2/imgproc.hpp"
#include "opencv2/features2d.hpp"
#include "opencv2/xfeatures2d.hpp"
#include
<opencv2/core/utility.hpp>
#include
"opencv2/core/utility.hpp"
#include <string>
using
namespace
std
;
...
...
modules/xfeatures2d/samples/video_homography.cpp
View file @
29e3caf3
...
...
@@ -6,6 +6,7 @@
*/
#include <iostream>
#include "opencv2/opencv_modules.hpp"
#ifdef HAVE_OPENCV_CALIB3D
...
...
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