fixed typo in example

This commit is contained in:
Davis King 2016-08-24 06:56:35 -04:00
parent 08f2c26a2d
commit 02d8ebc903

View File

@ -294,7 +294,7 @@ int main(int argc, char** argv)
serialize("object_detector.svm") << detector;
cout << "Testing detector on training data..." << endl;
cout << "Test detector (precision,recall,AP): " << test_object_detection_function(detector, images, object_locations) << endl;
cout << "Test detector (precision,recall,AP): " << test_object_detection_function(detector, images, object_locations, ignore) << endl;
}
else
{