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
b679ebc1
Commit
b679ebc1
authored
Sep 15, 2011
by
Alexander Mordvintsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python DescriptorExtractor.compute now returns filtered keypoints
wrapped StarFeatureDetector and GridAdaptedFeatureDetector
parent
49d33f61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
features2d.hpp
modules/features2d/include/opencv2/features2d/features2d.hpp
+5
-5
No files found.
modules/features2d/include/opencv2/features2d/features2d.hpp
View file @
b679ebc1
...
...
@@ -1483,11 +1483,11 @@ protected:
MSER
mser
;
};
class
CV_EXPORTS
StarFeatureDetector
:
public
FeatureDetector
class
CV_EXPORTS
_W
StarFeatureDetector
:
public
FeatureDetector
{
public
:
StarFeatureDetector
(
const
CvStarDetectorParams
&
params
=
cvStarDetectorParams
()
);
StarFeatureDetector
(
int
maxSize
,
int
responseThreshold
=
30
,
int
lineThresholdProjected
=
10
,
CV_WRAP
StarFeatureDetector
(
int
maxSize
,
int
responseThreshold
=
30
,
int
lineThresholdProjected
=
10
,
int
lineThresholdBinarized
=
8
,
int
suppressNonmaxSize
=
5
);
virtual
void
read
(
const
FileNode
&
fn
);
virtual
void
write
(
FileStorage
&
fs
)
const
;
...
...
@@ -1644,7 +1644,7 @@ protected:
* Adapts a detector to partition the source image into a grid and detect
* points in each cell.
*/
class
CV_EXPORTS
GridAdaptedFeatureDetector
:
public
FeatureDetector
class
CV_EXPORTS
_W
GridAdaptedFeatureDetector
:
public
FeatureDetector
{
public
:
/*
...
...
@@ -1654,7 +1654,7 @@ public:
* gridRows Grid rows count.
* gridCols Grid column count.
*/
GridAdaptedFeatureDetector
(
const
Ptr
<
FeatureDetector
>&
detector
,
int
maxTotalKeypoints
=
1000
,
CV_WRAP
GridAdaptedFeatureDetector
(
const
Ptr
<
FeatureDetector
>&
detector
,
int
maxTotalKeypoints
=
1000
,
int
gridRows
=
4
,
int
gridCols
=
4
);
// TODO implement read/write
...
...
@@ -1846,7 +1846,7 @@ public:
* keypoints The input keypoints. Keypoints for which a descriptor cannot be computed are removed.
* descriptors Copmputed descriptors. Row i is the descriptor for keypoint i.
*/
CV_WRAP
void
compute
(
const
Mat
&
image
,
CV_IN_OUT
vector
<
KeyPoint
>&
keypoints
,
CV_OUT
Mat
&
descriptors
)
const
;
CV_WRAP
void
compute
(
const
Mat
&
image
,
CV_
OUT
CV_
IN_OUT
vector
<
KeyPoint
>&
keypoints
,
CV_OUT
Mat
&
descriptors
)
const
;
/*
* Compute the descriptors for a keypoints collection detected in image collection.
...
...
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