2013-03-06 14:41:02 +08:00
|
|
|
#!/usr/bin/env python
|
2012-11-24 02:57:22 +08:00
|
|
|
|
2012-10-17 07:18:30 +08:00
|
|
|
'''
|
|
|
|
This sample demonstrates Canny edge detection.
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
edge.py [<video source>]
|
|
|
|
|
|
|
|
Trackbars control edge thresholds.
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
2015-09-14 00:00:22 +08:00
|
|
|
# Python 2/3 compatibility
|
|
|
|
from __future__ import print_function
|
|
|
|
|
2017-12-11 17:55:03 +08:00
|
|
|
import cv2 as cv
|
2015-12-13 09:43:58 +08:00
|
|
|
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
|
|
|
|
|
|
|
|
|
2019-03-20 02:03:58 +08:00
|
|
|
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
|
|
|
|
|
2017-12-11 17:55:03 +08:00
|
|
|
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()
|
2017-12-11 17:55:03 +08:00
|
|
|
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()
|
2015-12-13 09:43:58 +08:00
|
|
|
vis = np.uint8(vis/2.)
|
2012-10-17 07:18:30 +08:00
|
|
|
vis[edge != 0] = (0, 255, 0)
|
2017-12-11 17:55:03 +08:00
|
|
|
cv.imshow('edge', vis)
|
|
|
|
ch = cv.waitKey(5)
|
2012-10-17 07:18:30 +08:00
|
|
|
if ch == 27:
|
|
|
|
break
|
2019-03-20 02:03:58 +08:00
|
|
|
|
|
|
|
print('Done')
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
print(__doc__)
|
|
|
|
main()
|
2017-12-11 17:55:03 +08:00
|
|
|
cv.destroyAllWindows()
|