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
1473f032
Commit
1473f032
authored
Dec 13, 2016
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7839 from sovrasov:mser_python_sample_update
parents
34c07f6a
21683a55
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
mser.py
samples/python/mser.py
+5
-2
No files found.
samples/python/mser.py
View file @
1473f032
...
...
@@ -17,9 +17,9 @@ Keys:
import
numpy
as
np
import
cv2
import
video
import
sys
if
__name__
==
'__main__'
:
import
sys
try
:
video_src
=
sys
.
argv
[
1
]
except
:
...
...
@@ -27,12 +27,15 @@ if __name__ == '__main__':
cam
=
video
.
create_capture
(
video_src
)
mser
=
cv2
.
MSER_create
()
while
True
:
ret
,
img
=
cam
.
read
()
if
ret
==
0
:
break
gray
=
cv2
.
cvtColor
(
img
,
cv2
.
COLOR_BGR2GRAY
)
vis
=
img
.
copy
()
regions
=
mser
.
detectRegions
(
gray
,
None
)
regions
,
_
=
mser
.
detectRegions
(
gray
)
hulls
=
[
cv2
.
convexHull
(
p
.
reshape
(
-
1
,
1
,
2
))
for
p
in
regions
]
cv2
.
polylines
(
vis
,
hulls
,
1
,
(
0
,
255
,
0
))
...
...
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