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
017895dd
Commit
017895dd
authored
Jul 12, 2012
by
Maria Dimashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
filtered MSER keypoints that have centers out of image
parent
3df72fe6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
features2d.hpp
modules/features2d/include/opencv2/features2d/features2d.hpp
+2
-2
mser.cpp
modules/features2d/src/mser.cpp
+3
-1
No files found.
modules/features2d/include/opencv2/features2d/features2d.hpp
View file @
017895dd
...
...
@@ -114,7 +114,7 @@ CV_EXPORTS void read(const FileNode& node, CV_OUT vector<KeyPoint>& keypoints);
/*
* A class filters a vector of keypoints.
* Because now it is difficult to provide a convenient interface for all usage scenarios of the keypoints filter class,
* it has only
4
needed by now static methods.
* it has only
several
needed by now static methods.
*/
class
CV_EXPORTS
KeyPointsFilter
{
...
...
@@ -142,7 +142,7 @@ public:
/*
* Retain the specified number of the best keypoints (according to the response)
*/
static
void
retainBest
(
vector
<
KeyPoint
>&
keypoints
,
int
npoints
);
static
void
retainBest
(
vector
<
KeyPoint
>&
keypoints
,
int
npoints
);
};
...
...
modules/features2d/src/mser.cpp
View file @
017895dd
...
...
@@ -1288,15 +1288,17 @@ void MserFeatureDetector::detectImpl( const Mat& image, vector<KeyPoint>& keypoi
(
*
this
)(
image
,
msers
,
mask
);
vector
<
vector
<
Point
>
>::
const_iterator
contour_it
=
msers
.
begin
();
Rect
r
(
0
,
0
,
image
.
cols
,
image
.
rows
);
for
(
;
contour_it
!=
msers
.
end
();
++
contour_it
)
{
// TODO check transformation from MSER region to KeyPoint
RotatedRect
rect
=
fitEllipse
(
Mat
(
*
contour_it
));
float
diam
=
sqrt
(
rect
.
size
.
height
*
rect
.
size
.
width
);
if
(
diam
>
std
::
numeric_limits
<
float
>::
epsilon
()
)
if
(
diam
>
std
::
numeric_limits
<
float
>::
epsilon
()
&&
r
.
contains
(
rect
.
center
)
)
keypoints
.
push_back
(
KeyPoint
(
rect
.
center
,
diam
,
rect
.
angle
)
);
}
}
}
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