From 6cc595935636e732f4fb290366688f505ea7e9d7 Mon Sep 17 00:00:00 2001 From: doltac Date: Thu, 11 Dec 2014 19:22:40 +0900 Subject: [PATCH] Fixed typos in latentSVM detector demo. --- samples/cpp/latentsvm_multidetect.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/cpp/latentsvm_multidetect.cpp b/samples/cpp/latentsvm_multidetect.cpp index be8f2f8fed..37297e23de 100644 --- a/samples/cpp/latentsvm_multidetect.cpp +++ b/samples/cpp/latentsvm_multidetect.cpp @@ -23,7 +23,7 @@ using namespace cv; static void help() { cout << "This program demonstrated the use of the latentSVM detector." << endl << - "It reads in a trained object models and then uses them to detect the objects in an images." << endl << + "It reads in trained object models and then uses them to detect the objects in images." << endl << endl << "Call:" << endl << "./latentsvm_multidetect [][]" << endl << @@ -132,7 +132,7 @@ int main(int argc, char* argv[]) LatentSvmDetector detector( models_filenames ); if( detector.empty() ) { - cout << "Models cann't be loaded" << endl; + cout << "Models can't be loaded" << endl; exit(-1); }