1 | initial version |
Hi,
I remember when learning OpenCV I did an example with the old C API that would allow the video to jump to a frame using the track bar; it used
cvSetCaptureProperty(capture, CV_CAP_PROP_POS_FRAMES, frame_nmber)
you can see the documentation under VideoCapture::set with this link and with C++ should look something like this:
capture.set(CV_CAP_PROP_POS_FRAMES, frame_number);