[참고]
- 비디오 프레임 스트림 재생 : https://ng1004.tistory.com/91?category=777422
[코드]
import cv2
capture = cv2.VideoCapture(0)
capture.set(cv2.CAP_PROP_AUTOFOCUS, 0) # AUTOFOCUS 끄기
while True:
has_frame, frame = capture.read()
if not has_frame:
print('Can\'t get frame')
break
cv2.imshow('frame', frame)
key = cv2.waitKey(3)
if key == 27:
print('Pressed ESC')
break
capture.release()
cv2.destroyAllWindows()
[설명]
- 코드 한줄만 추가하면 됨
- python의 간결함에 다시 한번 감탄함
'#openCV # 파이썬' 카테고리의 다른 글
#openCV #python #thresholding (0) | 2019.05.03 |
---|---|
#dlib 설치 #python3.6 (0) | 2019.05.02 |
#openCV #원검출 #cv2.HoughCircles() (0) | 2019.04.04 |
#openCV #영상분할 #cv2.threshold(), cv2.inRange() (0) | 2019.04.04 |
#openCV #이미지 프로세싱 #cv2.cvtColor(), cv2.inRange() (0) | 2019.04.04 |