opencv/samples/python/edge.py

61 lines
1.1 KiB
Python
Raw Normal View History

2013-03-06 14:41:02 +08:00
#!/usr/bin/env python
2012-10-17 07:18:30 +08:00
'''
This sample demonstrates Canny edge detection.
Usage:
edge.py [<video source>]
Trackbars control edge thresholds.
'''
# Python 2/3 compatibility
from __future__ import print_function
import cv2 as cv
import numpy as np
2013-03-06 14:41:02 +08:00
# relative module
2012-10-17 07:18:30 +08:00
import video
2013-03-06 14:41:02 +08:00
# built-in module
2012-10-17 07:18:30 +08:00
import sys
def main():
2013-03-06 14:41:02 +08:00
try:
fn = sys.argv[1]
except:
fn = 0
2012-10-17 07:18:30 +08:00
def nothing(*arg):
pass
cv.namedWindow('edge')
cv.createTrackbar('thrs1', 'edge', 2000, 5000, nothing)
cv.createTrackbar('thrs2', 'edge', 4000, 5000, nothing)
2012-10-17 07:18:30 +08:00
cap = video.create_capture(fn)
while True:
2019-10-16 23:49:33 +08:00
_flag, img = cap.read()
gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
thrs1 = cv.getTrackbarPos('thrs1', 'edge')
thrs2 = cv.getTrackbarPos('thrs2', 'edge')
edge = cv.Canny(gray, thrs1, thrs2, apertureSize=5)
2012-10-17 07:18:30 +08:00
vis = img.copy()
vis = np.uint8(vis/2.)
2012-10-17 07:18:30 +08:00
vis[edge != 0] = (0, 255, 0)
cv.imshow('edge', vis)
ch = cv.waitKey(5)
2012-10-17 07:18:30 +08:00
if ch == 27:
break
print('Done')
if __name__ == '__main__':
print(__doc__)
main()
cv.destroyAllWindows()