mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-06 11:56:52 +08:00
Removed post_process_max_substitutions configuration option
This commit is contained in:
@@ -55,9 +55,6 @@ postprocess_min_confidence = 65
|
|||||||
; chance that the character is incorrect and will be skipped. Value is a confidence percent
|
; chance that the character is incorrect and will be skipped. Value is a confidence percent
|
||||||
postprocess_confidence_skip_level = 80
|
postprocess_confidence_skip_level = 80
|
||||||
|
|
||||||
; Reduces the total permutations to consider for scoring.
|
|
||||||
postprocess_max_substitutions = 2
|
|
||||||
|
|
||||||
; Results with fewer characters will be discarded
|
; Results with fewer characters will be discarded
|
||||||
postprocess_min_characters = 4
|
postprocess_min_characters = 4
|
||||||
postprocess_max_characters = 8
|
postprocess_max_characters = 8
|
||||||
|
@@ -177,7 +177,6 @@ namespace alpr
|
|||||||
|
|
||||||
postProcessMinConfidence = getFloat(ini, "", "postprocess_min_confidence", 100);
|
postProcessMinConfidence = getFloat(ini, "", "postprocess_min_confidence", 100);
|
||||||
postProcessConfidenceSkipLevel = getFloat(ini, "", "postprocess_confidence_skip_level", 100);
|
postProcessConfidenceSkipLevel = getFloat(ini, "", "postprocess_confidence_skip_level", 100);
|
||||||
postProcessMaxSubstitutions = getInt(ini, "", "postprocess_max_substitutions", 100);
|
|
||||||
postProcessMinCharacters = getInt(ini, "", "postprocess_min_characters", 100);
|
postProcessMinCharacters = getInt(ini, "", "postprocess_min_characters", 100);
|
||||||
postProcessMaxCharacters = getInt(ini, "", "postprocess_max_characters", 100);
|
postProcessMaxCharacters = getInt(ini, "", "postprocess_max_characters", 100);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user