1 | initial version |
no, it's not possible, to process a video without "playing it".
you as a human don't have to watch it, so no need for imshow() / waitKey().
still, 2 hours video means 7200*30 frames to process. if you use haarcascades to detect faces here, and processing a single frame takes close to a second, it will take long.
2 | No.2 Revision |
no, it's not possible, to process a video without "playing it".
you as a human don't have to watch it, so no need for imshow() / waitKey().
still, 2 hours video means ~ 7200*30 frames to process. if you use haarcascades to detect faces here, and processing a single frame takes close to a second, it will take long. long.