diff --git a/README.md b/README.md index 004f11d..8de46ee 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Where: Max number of possible plate numbers to return. Default=10 --seek - Seek to the specied millisecond in a video file. Default=0 + Seek to the specified millisecond in a video file. Default=0 -p , --pattern Attempt to match the plate number against a plate pattern (e.g., md diff --git a/doc/man/alpr.1 b/doc/man/alpr.1 index 8f18975..e412cd3 100644 --- a/doc/man/alpr.1 +++ b/doc/man/alpr.1 @@ -44,7 +44,7 @@ Where: Max number of possible plate numbers to return. Default=10 \-\-seek - Seek to the specied millisecond in a video file. Default=0 + Seek to the specified millisecond in a video file. Default=0 \-p , \-\-pattern Attempt to match the plate number against a plate pattern (e.g., md diff --git a/src/main.cpp b/src/main.cpp index d4aab0c..b8d1e27 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -70,7 +70,7 @@ int main( int argc, const char** argv ) TCLAP::ValueArg countryCodeArg("c","country","Country code to identify (either us for USA or eu for Europe). Default=us",false, "us" ,"country_code"); - TCLAP::ValueArg seekToMsArg("","seek","Seek to the specied millisecond in a video file. Default=0",false, 0 ,"integer_ms"); + TCLAP::ValueArg seekToMsArg("","seek","Seek to the specified millisecond in a video file. Default=0",false, 0 ,"integer_ms"); TCLAP::ValueArg configFileArg("","config","Path to the openalpr.conf file",false, "" ,"config_file"); TCLAP::ValueArg templatePatternArg("p","pattern","Attempt to match the plate number against a plate pattern (e.g., md for Maryland, ca for California)",false, "" ,"pattern code"); TCLAP::ValueArg topNArg("n","topn","Max number of possible plate numbers to return. Default=10",false, 10 ,"topN");