我希望我的网络摄像头在 open cv python 中放大,但我不知道如何。任何人都可以帮助我解决我的问题吗?
import cv2
video = cv2.VideoCapture(0)
while True:
check, frame = video.read()
cv2.imshow('Video', frame)
key = cv2.waitKey(1)
if key == 27:
break
video.release()
cv2.destroyAllWindows
Run Code Online (Sandbox Code Playgroud)