Fixed bug in the render_face_detections() overload I just added.

This commit is contained in:
Davis King 2014-09-02 20:55:44 -04:00
parent 921a70847f
commit 5bcfe4f6c9
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ namespace dlib
{
std::vector<full_object_detection> dets;
dets.push_back(det);
return render_face_detections(dets);
return render_face_detections(dets, color);
}
// ----------------------------------------------------------------------------------------