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
ed6e0716
Commit
ed6e0716
authored
Jun 10, 2010
by
Victor Erukhimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added intro for detectors/descriptors interface
parent
d5ef5b88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
cv_feature_detection.tex
doc/cv_feature_detection.tex
+9
-1
No files found.
doc/cv_feature_detection.tex
View file @
ed6e0716
...
@@ -1212,7 +1212,15 @@ There is fast multi-scale Hessian keypoint detector that can be used to find the
...
@@ -1212,7 +1212,15 @@ There is fast multi-scale Hessian keypoint detector that can be used to find the
The function can be used for object tracking and localization, image stitching etc. See the
The function can be used for object tracking and localization, image stitching etc. See the
\texttt
{
find
\_
obj.cpp
}
demo in OpenCV samples directory.
\texttt
{
find
\_
obj.cpp
}
demo in OpenCV samples directory.
\subsection
{
Common Interfaces for Feature Detection and Descriptor Extraction
}
\section
{
Common Interfaces for Feature Detection and Descriptor Extraction
}
Both detectors and descriptors in OpenCV have wrappers with common interface that enables to switch easily
between different algorithms solving the same problem. All objects that implement keypoint detectors inherit
FeatureDetector interface. Descriptors that are represented as vectors in a multidimensional space can be
computed with DescriptorExtractor interface. DescriptorMatcher interface can be used to find matches between
two sets of descriptors. GenericDescriptorMatch is a more generic interface for descriptors. It does not make any
assumptions about descriptor representation. Every descriptor with DescriptorExtractor interface has a wrapper with
GenericDescriptorMatch interface (see VectorDescriptorMatch). There are descriptors such as one way descriptor and
ferns that have GenericDescriptorMatch interface implemented, but do not support DescriptorExtractor.
\cvclass
{
FeatureDetector
}
\cvclass
{
FeatureDetector
}
Abstract base class for 2D image feature detectors.
Abstract base class for 2D image feature detectors.
...
...
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