Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

VideoCapture will return an empty, invalid frame, if it reached the end of your movie. you will have to check for this:

capture1 >> frame1;
if (frame1.empty()) {
    // what now ?
}
// repeat for all 6 captures