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
e703e8f5
Commit
e703e8f5
authored
May 22, 2012
by
Alexander Mordvintsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exposed MSER to python again
parent
fc71745c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
features2d.hpp
modules/features2d/include/opencv2/features2d/features2d.hpp
+2
-2
No files found.
modules/features2d/include/opencv2/features2d/features2d.hpp
View file @
e703e8f5
...
@@ -324,13 +324,13 @@ class CV_EXPORTS_W MSER : public FeatureDetector
...
@@ -324,13 +324,13 @@ class CV_EXPORTS_W MSER : public FeatureDetector
{
{
public
:
public
:
//! the full constructor
//! the full constructor
explicit
MSER
(
int
_delta
=
5
,
int
_min_area
=
60
,
int
_max_area
=
14400
,
CV_WRAP
explicit
MSER
(
int
_delta
=
5
,
int
_min_area
=
60
,
int
_max_area
=
14400
,
double
_max_variation
=
0.25
,
double
_min_diversity
=
.2
,
double
_max_variation
=
0.25
,
double
_min_diversity
=
.2
,
int
_max_evolution
=
200
,
double
_area_threshold
=
1.01
,
int
_max_evolution
=
200
,
double
_area_threshold
=
1.01
,
double
_min_margin
=
0.003
,
int
_edge_blur_size
=
5
);
double
_min_margin
=
0.003
,
int
_edge_blur_size
=
5
);
//! the operator that extracts the MSERs from the image or the specific part of it
//! the operator that extracts the MSERs from the image or the specific part of it
CV_WRAP_AS
(
detect
)
void
operator
()(
const
Mat
&
image
,
vector
<
vector
<
Point
>
>&
msers
,
CV_WRAP_AS
(
detect
)
void
operator
()(
const
Mat
&
image
,
CV_OUT
vector
<
vector
<
Point
>
>&
msers
,
const
Mat
&
mask
=
Mat
()
)
const
;
const
Mat
&
mask
=
Mat
()
)
const
;
AlgorithmInfo
*
info
()
const
;
AlgorithmInfo
*
info
()
const
;
...
...
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