■ VideoCapture 클래스를 사용해 비디오 카메라를 캡처하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import cv2 videoCapture = cv2.VideoCapture(0) while(videoCapture.isOpened()): result, frameNDArray = videoCapture.read() cv2.imshow("video", frameNDArray) if cv2.waitKey(1) & 0xFF == ord("q"): break videoCapture.release() cv2.destroyAllWindows() |