Commit 5e9f094d authored by Davis King's avatar Davis King

Fixed compiler warning

parent 71f78c1e
...@@ -68,7 +68,7 @@ int main() try ...@@ -68,7 +68,7 @@ int main() try
// rectangle is our refined detection position. // rectangle is our refined detection position.
auto fd = sp(img,d); auto fd = sp(img,d);
rectangle rect; rectangle rect;
for (long j = 0; j < fd.num_parts(); ++j) for (unsigned long j = 0; j < fd.num_parts(); ++j)
rect += fd.part(j); rect += fd.part(j);
win.add_overlay(rect, rgb_pixel(255,0,0)); win.add_overlay(rect, rgb_pixel(255,0,0));
} }
......
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