Commit 7c8b9828 authored by Davis King's avatar Davis King

Fixed the image_display so that when you try to click on boxes that happen to

have object parts labeled with OBJECT_PART_NOT_PRESENT it doesn't accidentally
move that non-present part rather than what you are clicking on.
parent d37699e6
......@@ -6312,6 +6312,9 @@ namespace dlib
std::map<std::string,point>::const_iterator itr;
for (itr = overlay_rects[i].parts.begin(); itr != overlay_rects[i].parts.end(); ++itr)
{
if (itr->second == OBJECT_PART_NOT_PRESENT)
continue;
rectangle temp = centered_rect(get_rect_on_screen(centered_rect(itr->second,1,1)), part_width, part_width);
if (rect_is_selected && selected_rect == i &&
......@@ -6504,6 +6507,9 @@ namespace dlib
std::map<std::string,point>::const_iterator itr;
for (itr = overlay_rects[i].parts.begin(); itr != overlay_rects[i].parts.end(); ++itr)
{
if (itr->second == OBJECT_PART_NOT_PRESENT)
continue;
rectangle temp = centered_rect(get_rect_on_screen(centered_rect(itr->second,1,1)), part_width, part_width);
point c = center(temp);
......@@ -6647,6 +6653,9 @@ namespace dlib
std::map<std::string,point>::const_iterator itr;
for (itr = overlay_rects[i].parts.begin(); itr != overlay_rects[i].parts.end(); ++itr)
{
if (itr->second == OBJECT_PART_NOT_PRESENT)
continue;
rectangle temp = centered_rect(get_rect_on_screen(centered_rect(itr->second,1,1)), part_width, part_width);
point c = center(temp);
......
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