kaschmo / sh_face_rec

Face recognition system for any IP Camera and openHAB
30 stars 10 forks source link

Missing config.ini parameters? #10

Open Alpoy opened 6 years ago

Alpoy commented 6 years ago

Hi,

I've been trying to make this work but I've been struggling with missing config parameters: When running trainclassifier.py: Section "TRAIN" with the parameter TRAINING_PATH (this was more or less easy to resolve)

And now I get an error message when running start.sh added ./sh_face_rec/ to pythonpath. Traceback (most recent call last): File "sh_face_rec/startserver.py", line 6, in from frameworker import FrameWorker File "./sh_face_rec/frameworker.py", line 13, in cf = config['FRAMEWORKER'] File "/usr/lib/python3.4/configparser.py", line 937, in getitem raise KeyError(key) KeyError: 'FRAMEWORKER' unable to load app 0 (mountpoint='') (callable not found or import error) no app loaded. going in full dynamic mode

kaschmo commented 6 years ago

Hi,

I have a config.ini that I use in production. Did not copy all the latest config categories over to the template. But now I did - see updated version of config_template.ini Actually, the Frameworker section is not needed for configuration. So you could also completely delte the cf = config['FRAMEWORKER'] from frameworker.py

Alpoy commented 6 years ago

Seems to work fine now! Thanks :-)