From 5abe94042f165f619a137861c632687f4eaa44c2 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 18 Feb 2015 23:13:58 -0500 Subject: [PATCH] Added [Experimental] tag to region detection description --- README.md | 3 ++- doc/man/alpr.1 | 3 ++- src/main.cpp | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 11f2563..5b4e06f 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,8 @@ Where: Default=off -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 Output recognition results in JSON format. Default=off diff --git a/doc/man/alpr.1 b/doc/man/alpr.1 index dcd659a..08a93f6 100644 --- a/doc/man/alpr.1 +++ b/doc/man/alpr.1 @@ -55,7 +55,8 @@ Where: Default=off \-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 Output recognition results in JSON format. Default=off diff --git a/src/main.cpp b/src/main.cpp index 60bbd28..09b2fe4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -72,7 +72,7 @@ int main( int argc, const char** argv ) TCLAP::ValueArg 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 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); try