Hello,
I am trying to run the classify_picamera.py example shown here.
when I try to run
python3 classify_picamera.py \
--model /tmp/mobilenet_v1_1.0_224_quant.tflite \
--labels /tmp/labels_mobilenet_quant_v1_224.txt
I get
Traceback (most recent call last):
File "classify_picamera.py", line 96, in <module> main()
File "classify_picamera.py", line 68, in main labels = load_labels(args.labels)
File "classify_picamera.py", line 33, in load_labels with open(path, 'r') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/labels_mobilenet_quant_v1_224.txt'
I am feeling like I missed a step in the installation or maybe the instructions are not complete?
Has anyone run across these kinds of error or has gotten these errors?
Any help would be appreciated!
Thank you,
Sean Worcester