mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
Update MSER python sample
This commit is contained in:
parent
2fded5d8fb
commit
21683a550a
@ -17,9 +17,9 @@ Keys:
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
import cv2
|
import cv2
|
||||||
import video
|
import video
|
||||||
|
import sys
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
import sys
|
|
||||||
try:
|
try:
|
||||||
video_src = sys.argv[1]
|
video_src = sys.argv[1]
|
||||||
except:
|
except:
|
||||||
@ -27,12 +27,15 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
cam = video.create_capture(video_src)
|
cam = video.create_capture(video_src)
|
||||||
mser = cv2.MSER_create()
|
mser = cv2.MSER_create()
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
ret, img = cam.read()
|
ret, img = cam.read()
|
||||||
|
if ret == 0:
|
||||||
|
break
|
||||||
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
|
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
|
||||||
vis = img.copy()
|
vis = img.copy()
|
||||||
|
|
||||||
regions = mser.detectRegions(gray, None)
|
regions, _ = mser.detectRegions(gray)
|
||||||
hulls = [cv2.convexHull(p.reshape(-1, 1, 2)) for p in regions]
|
hulls = [cv2.convexHull(p.reshape(-1, 1, 2)) for p in regions]
|
||||||
cv2.polylines(vis, hulls, 1, (0, 255, 0))
|
cv2.polylines(vis, hulls, 1, (0, 255, 0))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user