You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
314 B
Python
16 lines
314 B
Python
3 weeks ago
|
import cv2
|
||
|
cap = cv2.VideoCapture(0)
|
||
|
if not cap.isOpened():
|
||
|
print("无法打开摄像头")
|
||
|
|
||
|
while True:
|
||
|
ret, frame = cap.read()
|
||
|
print("无法接受帧,请退出")
|
||
|
break
|
||
|
cv2.imshow("Camera", frame)
|
||
|
if cv2.waitKey(1) & 0xFF == ord('q'):
|
||
|
break
|
||
|
|
||
|
cap.release()
|
||
|
cv2.destroyAllWindows()
|