BIG
웹캠 영상 출력 샘플코드
# 웹캠 영상 출력 윈도우 만들기
import cv2
def display_webcam_display():
video_capture = cv2.VideoCapture(0)
while True:
# Grab a single frame of video
status, frame = video_capture.read()
if not status:
break
# Display the resulting image
cv2.imshow('Video', frame)
# Hit 'q' on the keyboard to quit!
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# Release handle to the webcam
video_capture.release()
cv2.destroyAllWindows()
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
display_webcam_display()
LIST
'!!...Project > !!...Python얼굴검출' 카테고리의 다른 글
[python] 웹캠 영상 얼굴 검출 & 좌우 흔들림에 대한 시각화 (0) | 2023.12.11 |
---|---|
[python] 웹캠 영상 얼굴 검출 (0) | 2023.12.08 |
[python] 웹캠을 이용한 감정검출 - 샘플 - (0) | 2023.11.19 |
[python] 웹캠을 이용한 심박수 측정 - 샘플 - (0) | 2023.11.17 |