diff --git a/src/image.c b/src/image.c index 4a2c6baf..55ddcfe2 100644 --- a/src/image.c +++ b/src/image.c @@ -284,6 +284,7 @@ void draw_detections(image im, detection *dets, int num, float thresh, char **na int right = (b.x+b.w/2.)*im.w; int top = (b.y-b.h/2.)*im.h; int bot = (b.y+b.h/2.)*im.h; + printf("(%d,%d,%d,%d)\n", left, top, right, bot); if(left < 0) left = 0; if(right > im.w-1) right = im.w-1;