Commit 20afefd7 authored by Davis King's avatar Davis King

clarified example

parent c7346758
...@@ -147,8 +147,7 @@ int main(int argc, char** argv) ...@@ -147,8 +147,7 @@ int main(int argc, char** argv)
// Now that we have a face detector we can test it. The first statement tests it // Now that we have a face detector we can test it. The first statement tests it
// on the training data. It will print the precision, recall, and then average precision. // on the training data. It will print the precision, recall, and then average precision.
cout << "training results: " << test_object_detection_function(detector, images_train, face_boxes_train) << endl; cout << "training results: " << test_object_detection_function(detector, images_train, face_boxes_train) << endl;
// Happily, we see that the object detector works perfectly, even on the testing // Happily, we see that the object detector works perfectly on the testing images.
// images.
cout << "testing results: " << test_object_detection_function(detector, images_test, face_boxes_test) << endl; cout << "testing results: " << test_object_detection_function(detector, images_test, face_boxes_test) << endl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment