Commit 55c1d6cd authored by Davis King's avatar Davis King

Simplified these examples slightly.

parent cb578ea2
...@@ -281,7 +281,7 @@ int main() ...@@ -281,7 +281,7 @@ int main()
for (unsigned long j = 0; j < rects.size(); ++j) for (unsigned long j = 0; j < rects.size(); ++j)
{ {
// Add each detection as a red box. // Add each detection as a red box.
win.add_overlay(image_display::overlay_rect(rects[j], rgb_pixel(255,0,0))); win.add_overlay(rects[j], rgb_pixel(255,0,0));
} }
cout << "Hit enter to see the next image."; cout << "Hit enter to see the next image.";
......
...@@ -216,7 +216,7 @@ int main() ...@@ -216,7 +216,7 @@ int main()
for (unsigned long j = 0; j < rects.size(); ++j) for (unsigned long j = 0; j < rects.size(); ++j)
{ {
// Add each detection as a red box. // Add each detection as a red box.
win.add_overlay(image_display::overlay_rect(rects[j], rgb_pixel(255,0,0))); win.add_overlay(rects[j], rgb_pixel(255,0,0));
} }
cout << "Hit enter to see the next image."; cout << "Hit enter to see the next image.";
......
...@@ -76,14 +76,14 @@ int main(int argc, char** argv) ...@@ -76,14 +76,14 @@ int main(int argc, char** argv)
const point p4 = rotate_point(center, rect.br_corner(), ang); const point p4 = rotate_point(center, rect.br_corner(), ang);
// Draw the sides of the box as red lines // Draw the sides of the box as red lines
my_window.add_overlay(image_window::overlay_line(p1, p2, rgb_pixel(255,0,0))); my_window.add_overlay(p1, p2, rgb_pixel(255,0,0));
my_window.add_overlay(image_window::overlay_line(p1, p3, rgb_pixel(255,0,0))); my_window.add_overlay(p1, p3, rgb_pixel(255,0,0));
my_window.add_overlay(image_window::overlay_line(p4, p2, rgb_pixel(255,0,0))); my_window.add_overlay(p4, p2, rgb_pixel(255,0,0));
my_window.add_overlay(image_window::overlay_line(p4, p3, rgb_pixel(255,0,0))); my_window.add_overlay(p4, p3, rgb_pixel(255,0,0));
// Draw a line from the center to the top side so we can see how the box is oriented. // Draw a line from the center to the top side so we can see how the box is oriented.
// Also make this line green. // Also make this line green.
my_window.add_overlay(image_window::overlay_line(center, (p1+p2)/2, rgb_pixel(0,255,0))); my_window.add_overlay(center, (p1+p2)/2, rgb_pixel(0,255,0));
} }
// wait until the user closes the window before we let the program // wait until the user closes the window before we let the program
......
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