Commit a05b8651 authored by Davis King's avatar Davis King

Fixed code not handling OBJECT_PART_NOT_PRESENT for full_object_detection objects.

parent 8b5c696c
......@@ -1182,7 +1182,10 @@ namespace dlib
parts.reserve(obj.num_parts());
for (unsigned long i = 0; i < obj.num_parts(); ++i)
{
parts.push_back(tran(obj.part(i)));
if (obj.part(i) != OBJECT_PART_NOT_PRESENT)
parts.push_back(tran(obj.part(i)));
else
parts.push_back(OBJECT_PART_NOT_PRESENT);
}
return full_object_detection(tform_object(tran,obj.get_rect()), parts);
}
......@@ -1798,7 +1801,12 @@ namespace dlib
full_object_detection res(det);
// map the parts
for (unsigned long l = 0; l < det.num_parts(); ++l)
res.part(l) = tform(det.part(l));
{
if (det.part(l) != OBJECT_PART_NOT_PRESENT)
res.part(l) = tform(det.part(l));
else
res.part(l) = OBJECT_PART_NOT_PRESENT;
}
// map the main rectangle
rectangle rect;
rect += tform(det.get_rect().tl_corner());
......
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