Commit 331b2d75 authored by Davis King's avatar Davis King

Improved error messages from object detector.

parent dcb8b6ff
...@@ -184,6 +184,9 @@ namespace dlib ...@@ -184,6 +184,9 @@ namespace dlib
sout << "The offending rectangles are:\n"; sout << "The offending rectangles are:\n";
sout << "rect1: "<< mapped_rects[i] << endl; sout << "rect1: "<< mapped_rects[i] << endl;
sout << "rect2: "<< mapped_rects[j] << endl; sout << "rect2: "<< mapped_rects[j] << endl;
sout << "overlap amount: " <<
mapped_rects[i].intersect(mapped_rects[j]).area()/(double)( mapped_rects[i]+mapped_rects[j]).area()
<< endl;
throw dlib::impossible_labeling_error(sout.str()); throw dlib::impossible_labeling_error(sout.str());
} }
} }
......
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