Fix small typo in compare.py
This commit is contained in:
parent
b49bde1607
commit
983ab0a9d0
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ config.read(PATH + "/config.ini")
|
||||||
|
|
||||||
# Get all config values needed
|
# Get all config values needed
|
||||||
use_cnn = config.getboolean("core", "use_cnn", fallback=False)
|
use_cnn = config.getboolean("core", "use_cnn", fallback=False)
|
||||||
timeout = config.getint("video", "timout", fallback=5)
|
timeout = config.getint("video", "timeout", fallback=5)
|
||||||
dark_threshold = config.getfloat("video", "dark_threshold", fallback=50.0)
|
dark_threshold = config.getfloat("video", "dark_threshold", fallback=50.0)
|
||||||
video_certainty = config.getfloat("video", "certainty", fallback=3.5) / 10
|
video_certainty = config.getfloat("video", "certainty", fallback=3.5) / 10
|
||||||
end_report = config.getboolean("debug", "end_report", fallback=False)
|
end_report = config.getboolean("debug", "end_report", fallback=False)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue