mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-06 06:46:53 +08:00
Fix typo "characers"
This commit is contained in:
@@ -22,8 +22,8 @@ postprocess_confidence_skip_level = 75
|
|||||||
postprocess_max_substitutions = 2
|
postprocess_max_substitutions = 2
|
||||||
|
|
||||||
; Results with fewer characters will be discarded
|
; Results with fewer characters will be discarded
|
||||||
postprocess_min_characers = 4
|
postprocess_min_characters = 4
|
||||||
postprocess_max_characers = 8
|
postprocess_max_characters = 10
|
||||||
|
|
||||||
[debug]
|
[debug]
|
||||||
general = 0
|
general = 0
|
||||||
|
@@ -117,8 +117,8 @@ void Config::loadValues(string country)
|
|||||||
postProcessMinConfidence = getFloat("common", "postprocess_min_confidence", 100);
|
postProcessMinConfidence = getFloat("common", "postprocess_min_confidence", 100);
|
||||||
postProcessConfidenceSkipLevel = getFloat("common", "postprocess_confidence_skip_level", 100);
|
postProcessConfidenceSkipLevel = getFloat("common", "postprocess_confidence_skip_level", 100);
|
||||||
postProcessMaxSubstitutions = getInt("common", "postprocess_max_substitutions", 100);
|
postProcessMaxSubstitutions = getInt("common", "postprocess_max_substitutions", 100);
|
||||||
postProcessMinCharacters = getInt("common", "postprocess_min_characers", 100);
|
postProcessMinCharacters = getInt("common", "postprocess_min_characters", 100);
|
||||||
postProcessMaxCharacters = getInt("common", "postprocess_max_characers", 100);
|
postProcessMaxCharacters = getInt("common", "postprocess_max_characters", 100);
|
||||||
|
|
||||||
debugGeneral = getBoolean("debug", "general", false);
|
debugGeneral = getBoolean("debug", "general", false);
|
||||||
debugTiming = getBoolean("debug", "timing", false);
|
debugTiming = getBoolean("debug", "timing", false);
|
||||||
|
Reference in New Issue
Block a user