Added [Experimental] tag to region detection description

This commit is contained in:
Matt Hill 2015-02-18 23:13:58 -05:00
parent 0091c80d73
commit 5abe94042f
3 changed files with 5 additions and 3 deletions

View File

@ -69,7 +69,8 @@ Where:
Default=off Default=off
-d, --detect_region -d, --detect_region
Attempt to detect the region of the plate image. Default=off Attempt to detect the region of the plate image. [Experimental]
Default=off
-j, --json -j, --json
Output recognition results in JSON format. Default=off Output recognition results in JSON format. Default=off

View File

@ -55,7 +55,8 @@ Where:
Default=off Default=off
\-d, \-\-detect_region \-d, \-\-detect_region
Attempt to detect the region of the plate image. Default=off Attempt to detect the region of the plate image. [Experimental]
Default=off
\-j, \-\-json \-j, \-\-json
Output recognition results in JSON format. Default=off Output recognition results in JSON format. Default=off

View File

@ -72,7 +72,7 @@ int main( int argc, const char** argv )
TCLAP::ValueArg<int> topNArg("n","topn","Max number of possible plate numbers to return. Default=10",false, 10 ,"topN"); TCLAP::ValueArg<int> topNArg("n","topn","Max number of possible plate numbers to return. Default=10",false, 10 ,"topN");
TCLAP::SwitchArg jsonSwitch("j","json","Output recognition results in JSON format. Default=off", cmd, false); TCLAP::SwitchArg jsonSwitch("j","json","Output recognition results in JSON format. Default=off", cmd, false);
TCLAP::SwitchArg detectRegionSwitch("d","detect_region","Attempt to detect the region of the plate image. Default=off", cmd, false); TCLAP::SwitchArg detectRegionSwitch("d","detect_region","Attempt to detect the region of the plate image. [Experimental] Default=off", cmd, false);
TCLAP::SwitchArg clockSwitch("","clock","Measure/print the total time to process image and all plates. Default=off", cmd, false); TCLAP::SwitchArg clockSwitch("","clock","Measure/print the total time to process image and all plates. Default=off", cmd, false);
try try