From eedb6fa3c48b8844ec773a28e803c90c78a8344c Mon Sep 17 00:00:00 2001 From: Kevin Hughes Date: Wed, 17 Apr 2013 13:20:32 -0400 Subject: [PATCH] removed separate example for reading image sequences and modified starter_video.cpp to better explain the functionality of VideoCapture. I also added a bit more explanation in the documentation of the VideoCapture interface --- .../reading_and_writing_images_and_video.rst | 8 +- samples/cpp/starter_video.cpp | 76 ++++++++++--------- 2 files changed, 43 insertions(+), 41 deletions(-) diff --git a/modules/highgui/doc/reading_and_writing_images_and_video.rst b/modules/highgui/doc/reading_and_writing_images_and_video.rst index 914856dc3..622440a7c 100644 --- a/modules/highgui/doc/reading_and_writing_images_and_video.rst +++ b/modules/highgui/doc/reading_and_writing_images_and_video.rst @@ -197,8 +197,8 @@ VideoCapture ------------ .. ocv:class:: VideoCapture -Class for video capturing from video files or cameras. -The class provides C++ API for capturing video from cameras or for reading video files. Here is how the class can be used: :: +Class for video capturing from video files, image sequences or cameras. +The class provides C++ API for capturing video from cameras or for reading video files and image sequences. Here is how the class can be used: :: #include "opencv2/opencv.hpp" @@ -249,7 +249,7 @@ VideoCapture constructors. .. ocv:cfunction:: CvCapture* cvCaptureFromFile( const char* filename ) .. ocv:pyoldfunction:: cv.CaptureFromFile(filename) -> CvCapture - :param filename: name of the opened video file + :param filename: name of the opened video file (eg. video.avi) or image sequence (eg. img%02d.jpg) :param device: id of the opened video capturing device (i.e. a camera index). If there is a single camera connected, just pass 0. @@ -266,7 +266,7 @@ Open video file or a capturing device for video capturing .. ocv:pyfunction:: cv2.VideoCapture.open(filename) -> retval .. ocv:pyfunction:: cv2.VideoCapture.open(device) -> retval - :param filename: name of the opened video file + :param filename: name of the opened video file (eg. video.avi) or image sequence (eg. img%02d.jpg) :param device: id of the opened video capturing device (i.e. a camera index). diff --git a/samples/cpp/starter_video.cpp b/samples/cpp/starter_video.cpp index 5bceb552c..6a34c84d2 100644 --- a/samples/cpp/starter_video.cpp +++ b/samples/cpp/starter_video.cpp @@ -4,47 +4,51 @@ * Created on: Nov 23, 2010 * Author: Ethan Rublee * -* A starter sample for using opencv, get a video stream and display the images +* Modified on: April 17, 2013 +* Author: Kevin Hughes +* +* A starter sample for using OpenCV VideoCapture with capture devices, video files or image sequences * easy as CV_PI right? */ -#include "opencv2/highgui/highgui.hpp" + +#include + #include -#include #include using namespace cv; using namespace std; +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] << "