Fixed typos in latentSVM detector demo.
This commit is contained in:
@@ -23,7 +23,7 @@ using namespace cv;
|
|||||||
static void help()
|
static void help()
|
||||||
{
|
{
|
||||||
cout << "This program demonstrated the use of the latentSVM detector." << endl <<
|
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 <<
|
endl <<
|
||||||
"Call:" << endl <<
|
"Call:" << endl <<
|
||||||
"./latentsvm_multidetect <imagesFolder> <modelsFolder> [<overlapThreshold>][<threadsNumber>]" << endl <<
|
"./latentsvm_multidetect <imagesFolder> <modelsFolder> [<overlapThreshold>][<threadsNumber>]" << endl <<
|
||||||
@@ -132,7 +132,7 @@ int main(int argc, char* argv[])
|
|||||||
LatentSvmDetector detector( models_filenames );
|
LatentSvmDetector detector( models_filenames );
|
||||||
if( detector.empty() )
|
if( detector.empty() )
|
||||||
{
|
{
|
||||||
cout << "Models cann't be loaded" << endl;
|
cout << "Models can't be loaded" << endl;
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user