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
eeb00c88
Commit
eeb00c88
authored
Apr 04, 2015
by
cbalint13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More detailed documentation and proper cite.
parent
a68027a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
xfeatures2d.hpp
modules/xfeatures2d/include/opencv2/xfeatures2d.hpp
+18
-2
No files found.
modules/xfeatures2d/include/opencv2/xfeatures2d.hpp
View file @
eeb00c88
...
...
@@ -129,14 +129,30 @@ public:
static
Ptr
<
BriefDescriptorExtractor
>
create
(
int
bytes
=
32
);
};
/** @brief The class implements the keypoint detector using AGAST algorithm by Elmar Mair. :
*/
/** @overload */
CV_EXPORTS
void
AGAST
(
InputArray
image
,
CV_OUT
std
::
vector
<
KeyPoint
>&
keypoints
,
int
threshold
,
bool
nonmaxSuppression
=
true
);
/** @brief Detects corners using the AGAST algorithm
@param image grayscale image where keypoints (corners) are detected.
@param keypoints keypoints detected on the image.
@param threshold threshold on difference between intensity of the central pixel and pixels of a
circle around this pixel.
@param nonmaxSuppression if true, non-maximum suppression is applied to detected corners
(keypoints).
@param type one of the four neighborhoods as defined in the paper:
AgastFeatureDetector::AGAST_5_8, AgastFeatureDetector::AGAST_7_12d,
AgastFeatureDetector::AGAST_7_12s, AgastFeatureDetector::OAST_9_16
Detects corners using the AGAST algorithm by @cite mair2010_agast .
*/
CV_EXPORTS
void
AGAST
(
InputArray
image
,
CV_OUT
std
::
vector
<
KeyPoint
>&
keypoints
,
int
threshold
,
bool
nonmaxSuppression
,
int
type
);
/** @brief Wrapping class for feature detection using the AGAST method. :
*/
class
CV_EXPORTS_W
AgastFeatureDetector
:
public
Feature2D
{
public
:
...
...
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