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
b2484cfd
Commit
b2484cfd
authored
Jul 21, 2014
by
biagio montesano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added edline header
parent
dc272c06
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
descriptor.hpp
...descriptor/include/opencv2/line_descriptor/descriptor.hpp
+6
-5
ed_line_detector.hpp
...ptor/include/opencv2/line_descriptor/ed_line_detector.hpp
+0
-0
No files found.
modules/line_descriptor/include/opencv2/line_descriptor/descriptor.hpp
View file @
b2484cfd
...
...
@@ -50,6 +50,7 @@
#include "mihasher.hpp"
#include "sparse_hashtable.hpp"
#include "types.hpp"
#include "ed_line_detector.hpp"
namespace
cv
{
...
...
@@ -262,13 +263,13 @@ class CV_EXPORTS_W BinaryDescriptorMatcher : public Algorithm
void
knnMatch
(
const
Mat
&
queryDescriptors
,
std
::
vector
<
std
::
vector
<
DMatch
>
>&
matches
,
int
k
,
const
std
::
vector
<
Mat
>&
masks
=
std
::
vector
<
Mat
>
(),
bool
compactResult
=
false
);
/* for every input desciptor, find all the ones falling in a
certain
g
atching radius (for a pair of images) */
/* for every input desc
r
iptor, find all the ones falling in a
certain
m
atching radius (for a pair of images) */
void
radiusMatch
(
const
Mat
&
queryDescriptors
,
const
Mat
&
trainDescriptors
,
std
::
vector
<
std
::
vector
<
DMatch
>
>&
matches
,
float
maxDistance
,
const
Mat
&
mask
=
Mat
(),
bool
compactResult
=
false
)
const
;
/* for every input desciptor, find all the ones falling in a
certain
g
atching radius (from one image to a set) */
/* for every input desc
r
iptor, find all the ones falling in a
certain
m
atching radius (from one image to a set) */
void
radiusMatch
(
const
Mat
&
queryDescriptors
,
std
::
vector
<
std
::
vector
<
DMatch
>
>&
matches
,
float
maxDistance
,
const
std
::
vector
<
Mat
>&
masks
=
std
::
vector
<
Mat
>
(),
bool
compactResult
=
false
);
...
...
@@ -288,7 +289,7 @@ class CV_EXPORTS_W BinaryDescriptorMatcher : public Algorithm
/* constructor */
BinaryDescriptorMatcher
();
/* des
c
tructor */
/* destructor */
~
BinaryDescriptorMatcher
()
{
}
...
...
modules/line_descriptor/include/opencv2/line_descriptor/ed_line_detector.hpp
0 → 100644
View file @
b2484cfd
This diff is collapsed.
Click to expand it.
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