程序源码
import cv2
capture = cv2.VideoCapture(0)
while True:
ret, frame = capture.read()
frame = cv2.flip(frame,0) #镜像操作
cv2.imshow("video", frame)
key = cv2.waitKey(50)
#print(key)
if key == ord('q'): #判断是哪一个键按下
break
cv2.destroyAllWindows()
cv2.flip()
函数解析
语法:
cv2.flip(filename, flipcode)
flipcode | 作用 |
---|---|
1 | 水平翻转 |
0 | 垂直翻转 |
-1 | 水平垂直翻转 |
本文共 50 个字数,平均阅读时长 ≈ 1分钟
评论 (0)