-
Python webcam examplePython/Python 2020. 5. 29. 18:48반응형
import cv2 capture = cv2.VideoCapture(0) capture.set(cv2.CAP_PROP_FRAME_WIDTH, 640) capture.set(cv2.CAP_PROP_FRAME_HEIGHT, 480) while True: ret, frame = capture.read() cv2.imshow("VideoFrame", frame) if cv2.waitKey(1) > 0: break capture.release() cv2.destroyAllWindows()
웹 캠 띄우기
반응형'Python > Python' 카테고리의 다른 글
Python Postgresql 연동하고 CRUD 구현하기! (0) 2020.11.15 python pip3 install face_recognition In Ubuntu (0) 2020.09.21 Python Socket server,client example (0) 2020.05.29 Python 알고리즘 ( 백준 2446) (0) 2020.04.29 Python (Pysafebrowsing 키 발급 및 패키지 설치 ) (0) 2020.04.29