Here's a quick pro tip for (more) efficiently skipping frames while reading video input in OpenCV: OpenCV comes with a grab that does almost exactly that:
capture.grab() # go the next frame, but don't waste time reading it So you can even write a very short little function ...... Read more
