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

User experience optimizations #9

Open snowsignal opened 7 years ago

snowsignal commented 7 years ago

I noticed that modules are imported before we even analyze command line arguments. Since running something like --help shouldn't do any calculations, there is no reason to import bulky modules like OpenCV at the very beginning. I think that we should analyze command line args and then import everything.