From a55cce71d44424a8aa9c6ab8a07c379ce4ec0d39 Mon Sep 17 00:00:00 2001 From: psaintjust Date: Sun, 28 Jun 2015 11:01:32 -0400 Subject: [PATCH] Removed post_process_max_substitutions configuration option --- config/openalpr.conf.in | 3 --- src/openalpr/config.cpp | 1 - 2 files changed, 4 deletions(-) diff --git a/config/openalpr.conf.in b/config/openalpr.conf.in index bb5e066..36800f2 100644 --- a/config/openalpr.conf.in +++ b/config/openalpr.conf.in @@ -55,9 +55,6 @@ postprocess_min_confidence = 65 ; chance that the character is incorrect and will be skipped. Value is a confidence percent postprocess_confidence_skip_level = 80 -; Reduces the total permutations to consider for scoring. -postprocess_max_substitutions = 2 - ; Results with fewer characters will be discarded postprocess_min_characters = 4 postprocess_max_characters = 8 diff --git a/src/openalpr/config.cpp b/src/openalpr/config.cpp index a8a054e..008eae6 100644 --- a/src/openalpr/config.cpp +++ b/src/openalpr/config.cpp @@ -177,7 +177,6 @@ namespace alpr postProcessMinConfidence = getFloat(ini, "", "postprocess_min_confidence", 100); postProcessConfidenceSkipLevel = getFloat(ini, "", "postprocess_confidence_skip_level", 100); - postProcessMaxSubstitutions = getInt(ini, "", "postprocess_max_substitutions", 100); postProcessMinCharacters = getInt(ini, "", "postprocess_min_characters", 100); postProcessMaxCharacters = getInt(ini, "", "postprocess_max_characters", 100);