Added configuration option to output character details in results

This commit is contained in:
psaintjust
2015-06-30 19:41:37 -04:00
parent 6d9d8201e1
commit 50f9d2d81a
4 changed files with 29 additions and 19 deletions

View File

@@ -180,6 +180,8 @@ namespace alpr
postProcessMinCharacters = getInt(ini, "", "postprocess_min_characters", 100);
postProcessMaxCharacters = getInt(ini, "", "postprocess_max_characters", 100);
resultsCharacterDetails = getBoolean(ini,"", "results_character_details", false);
debugGeneral = getBoolean(ini, "", "debug_general", false);
debugTiming = getBoolean(ini, "", "debug_timing", false);
debugPrewarp = getBoolean(ini, "", "debug_prewarp", false);
@@ -329,4 +331,4 @@ namespace alpr
string val = string(pszValue);
return val;
}
}
}