Ask Your Question

Revision history [back]

Do the following:

Mat temp;

for (int i = 0 ; i < 3; i++){
    temp = capture.read(); //read frame
}

process(temp);

Basically this reads in 3 frames but only remembers the last one.