starter_video.cpp 2.96 KB
Newer Older
1
/*
2 3 4 5 6
* starter_video.cpp
*
*  Created on: Nov 23, 2010
*      Author: Ethan Rublee
*
7 8 9 10
*  Modified on: April 17, 2013
*      Author: Kevin Hughes
*
* A starter sample for using OpenCV VideoCapture with capture devices, video files or image sequences
11 12
* easy as CV_PI right?
*/
13

14
#include <opencv2/imgcodecs.hpp>
15
#include <opencv2/videoio/videoio.hpp>
16 17
#include <opencv2/highgui/highgui.hpp>

18
#include <iostream>
Gary Bradski's avatar
Gary Bradski committed
19
#include <stdio.h>
20 21 22 23

using namespace cv;
using namespace std;

24 25 26 27 28 29 30 31 32 33 34 35 36 37
//hide the local functions in an anon namespace
namespace {
    void help(char** av) {
        cout << "The program captures frames from a video file, image sequence (01.jpg, 02.jpg ... 10.jpg) or camera connected to your computer." << endl
             << "Usage:\n" << av[0] << " <video file, image sequence or device number>" << endl
             << "q,Q,esc -- quit" << endl
             << "space   -- save frame" << endl << endl
             << "\tTo capture from a camera pass the device number. To find the device number, try ls /dev/video*" << endl
             << "\texample: " << av[0] << " 0" << endl
             << "\tYou may also pass a video file instead of a device number" << endl
             << "\texample: " << av[0] << " video.avi" << endl
             << "\tYou can also pass the path to an image sequence and OpenCV will treat the sequence just like a video." << endl
             << "\texample: " << av[0] << " right%%02d.jpg" << endl;
    }
Gary Bradski's avatar
Gary Bradski committed
38

39 40 41 42 43 44 45
    int process(VideoCapture& capture) {
        int n = 0;
        char filename[200];
        string window_name = "video | q or esc to quit";
        cout << "press space to save a picture. q or esc to quit" << endl;
        namedWindow(window_name, WINDOW_KEEPRATIO); //resizable window;
        Mat frame;
46

47 48 49 50
        for (;;) {
            capture >> frame;
            if (frame.empty())
                break;
51

52 53
            imshow(window_name, frame);
            char key = (char)waitKey(30); //delay N millis, usually long enough to display and capture input
54

55 56 57 58 59 60 61 62 63 64 65 66 67
            switch (key) {
            case 'q':
            case 'Q':
            case 27: //escape key
                return 0;
            case ' ': //Save an image
                sprintf(filename,"filename%.3d.jpg",n++);
                imwrite(filename,frame);
                cout << "Saved " << filename << endl;
                break;
            default:
                break;
            }
68
        }
69
        return 0;
70
    }
71 72 73 74
}

int main(int ac, char** av) {

75 76 77 78 79
    if (ac != 2) {
        help(av);
        return 1;
    }
    std::string arg = av[1];
80
    VideoCapture capture(arg); //try to open string, this will attempt to open it as a video file or image sequence
81 82 83
    if (!capture.isOpened()) //if this fails, try to open as a video camera, through the use of an integer param
        capture.open(atoi(arg.c_str()));
    if (!capture.isOpened()) {
84
        cerr << "Failed to open the video device, video file or image sequence!\n" << endl;
85 86 87 88
        help(av);
        return 1;
    }
    return process(capture);
89
}