...

반응형

http://usefulall.com/%ed%8c%8c%ec%9d%b4%ec%8d%acpython-opencv%eb%a1%9c-%ec%9b%b9%ec%ba%a0usb-camera-%ec%98%81%ec%83%81-%ec%97%b4%ea%b8%b0/

 

파이썬(Python) OpenCV로 웹캠(USB CAMERA) 영상 열기!! – Do it…

import cv2 cam = cv2.VideoCapture(0) cam.set(3,1280) #CV_CAP_PROP_FRAME_WIDTH cam.set(4,720) #CV_CAP_PROP_FRAME_HEIGHT #cam.set(5,0) #CV_CAP_PROP_FPS while True: ret_val, img = cam.read() # 캠 이미지 불러오기 cv2.imshow("Cam Viewer",img) # 불러

usefulall.com

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import cv2
 
cam = cv2.VideoCapture(0)
cam.set(3,1280#CV_CAP_PROP_FRAME_WIDTH
cam.set(4,720#CV_CAP_PROP_FRAME_HEIGHT
#cam.set(5,0) #CV_CAP_PROP_FPS
 
while True:
    ret_val, img = cam.read() # 캠 이미지 불러오기
 
    cv2.imshow("Cam Viewer",img) # 불러온 이미지 출력하기
    if cv2.waitKey(1== 27:
        break  # esc to quit
 
cs

 

파이썬에서 OpenCV로 웹캠(webcam)을 여는 방법입니다

생각보다 너무 간단해서 주석만으로도 알수 있을 정도입니다

반응형