andrewda / frc-score-detection

A program to detect FRC match scores from their livestream.
GNU General Public License v3.0
15 stars 2 forks source link

Skipping Frames #7

Closed snowsignal closed 7 years ago

snowsignal commented 7 years ago

When we pull video from a live-stream, we receive something like 30 or 60 frames each second. Computed PyTesseract on each frame is inefficient and unoptimized. We should add an command line option to only read every nth frame. Something like: python score_detection.py --skip_frames 29 I'm already working on this, but I just wanted to mention this.

snowsignal commented 7 years ago

Oh wait, I see you already commited to only read every 30th frame. I'll close this issue and just add the frame skip argument in #6 .