From 00436255eea4480736dda112929ba86cbed46a6d Mon Sep 17 00:00:00 2001 From: Matthew Hill Date: Mon, 20 Oct 2014 22:04:12 -0400 Subject: [PATCH 1/2] Updated readme removed state info and -r option --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6fd2791..54044e0 100644 --- a/README.md +++ b/README.md @@ -15,18 +15,17 @@ For example, the following output is created by analyzing this image: ![Plate Image](http://www.openalpr.com/images/demoscreenshots/plate3.png "Input image") -The library is told that this is a Missouri (MO) license plate which validates the plate letters against a regional template. ``` -user@linux:~/openalpr$ alpr ./samplecar.png -t mo -r ~/openalpr/runtime_dir/ +user@linux:~/openalpr$ alpr ./samplecar.png plate0: top 10 results -- Processing Time = 58.1879ms. - - PE3R2X confidence: 88.9371 template_match: 1 + - PE3R2X confidence: 88.9371 template_match: 0 - PE32X confidence: 78.1385 template_match: 0 - PE3R2 confidence: 77.5444 template_match: 0 - - PE3R2Y confidence: 76.1448 template_match: 1 + - PE3R2Y confidence: 76.1448 template_match: 0 - P63R2X confidence: 72.9016 template_match: 0 - - FE3R2X confidence: 72.1147 template_match: 1 + - FE3R2X confidence: 72.1147 template_match: 0 - PE32 confidence: 66.7458 template_match: 0 - PE32Y confidence: 65.3462 template_match: 0 - P632X confidence: 62.1031 template_match: 0 From 177f5720ef9f65658c4a8bf41b52f072fadc1305 Mon Sep 17 00:00:00 2001 From: Matthew Hill Date: Mon, 20 Oct 2014 22:23:25 -0400 Subject: [PATCH 2/2] Updated readme with correct help text --- README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 54044e0..b356474 100644 --- a/README.md +++ b/README.md @@ -38,22 +38,21 @@ Detailed command line usage: ``` user@linux:~/openalpr$ alpr --help -USAGE: +USAGE: - alpr [-t ] [-r ] [-n ] - [--seek ] [-c ] - [--clock] [-d] [-j] [--] [--version] [-h] - + alpr [-c ] [--config ] [-n ] [--seek + ] [-t ] [--clock] [-d] [-j] [--] + [--version] [-h] -Where: +Where: - -t , --template_region - Attempt to match the plate number against a region template (e.g., md - for Maryland, ca for California) + -c , --country + Country code to identify (either us for USA or eu for Europe). + Default=us - -r , --runtime_dir - Path to the OpenAlpr runtime data directory + --config + Path to the openalpr.conf file -n , --topn Max number of possible plate numbers to return. Default=10 @@ -61,12 +60,12 @@ Where: --seek Seek to the specied millisecond in a video file. Default=0 - -c , --country - Country code to identify (either us for USA or eu for Europe). - Default=us + -t , --template_region + Attempt to match the plate number against a region template (e.g., md + for Maryland, ca for California) --clock - Measure/print the total time to process image and all plates. + Measure/print the total time to process image and all plates. Default=off -d, --detect_region @@ -85,10 +84,11 @@ Where: Displays usage information and exits. - (required) Image containing license plates + Image containing license plates OpenAlpr Command Line Utility + ```