mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Improved error messages from object detector.
This commit is contained in:
parent
dcb8b6ff2a
commit
331b2d753f
@ -184,6 +184,9 @@ namespace dlib
|
||||
sout << "The offending rectangles are:\n";
|
||||
sout << "rect1: "<< mapped_rects[i] << 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());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user