Post List

2014년 12월 28일 일요일

[OpenCV] 2.4.6 동영상 재생

#include <opencv\cv.h>
#include <opencv\highgui.h>

using namespace cv;

int main()
{
        Mat frame;
        string path = "D:\\outputVideo\\outputVideo.avi";
        VideoCapture capture(path);
        namedWindow("my_window");

        for (;;) {
               capture >> frame;
               imshow("my_window", frame);

               if (cv::waitKey(30) >= 0) break;
        }

}

댓글 없음:

댓글 쓰기