Added debug detector config option

This commit is contained in:
Matt Hill
2015-03-18 18:14:55 -04:00
parent c25bdf773e
commit f5b795ebe3
3 changed files with 3 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ postprocess_max_characters = 8
[debug]
general = 0
timing = 0
detector = 0
state_id = 0
plate_lines = 0
plate_corners = 0

View File

@@ -205,6 +205,7 @@ namespace alpr
debugGeneral = getBoolean("debug", "general", false);
debugTiming = getBoolean("debug", "timing", false);
debugDetector = getBoolean("debug", "detector", false);
debugStateId = getBoolean("debug", "state_id", false);
debugPlateLines = getBoolean("debug", "plate_lines", false);
debugPlateCorners = getBoolean("debug", "plate_corners", false);

View File

@@ -106,6 +106,7 @@ namespace alpr
bool debugGeneral;
bool debugTiming;
bool debugDetector;
bool debugStateId;
bool debugPlateLines;
bool debugPlateCorners;