상세 컨텐츠

본문 제목

OnpenCV 영상 실행 코드

coding/OpenCV

by golduny_zoo 2021. 4. 15. 17:50

본문

728x90

 

import cv2
import numpy as np

# FPS : Frame per Second : 1초당 몇장의 사진으로 구성되어 있다.
cap = cv2.VideoCapture('data/videos/chaplin.mp4')

if cap.isOpened() == False :
    print( "Error opening video stream or file" )

else :
    while cap.isOpened() :
        # 사진을 1장씩 가져와서.
        ret, frame = cap.read()

        # 제대로 사진 가져왔으면, 화면에 표시
        if ret == True :
            cv2.imshow("Frame", frame)

            # 키보드에서 esc키를 누르면 exit하라는 것
            if cv2.waitKey(25)&0xFF == 27 :
                break
            
        else :
            break
    cap.release()


    cv2.destroyAllWindows()

'coding > OpenCV' 카테고리의 다른 글

OpenCV sobel  (0) 2021.04.19
OpenCV Bilateral Filtering  (0) 2021.04.19
OpenCV Thresholding  (0) 2021.04.15
OpenCV 컴퓨터 연결된 카메라 영상 출력  (0) 2021.04.15
openCV 첫 도전  (0) 2021.04.15

관련글 더보기