diff --git a/src/image.c b/src/image.c index 4a2c6baf..276ff894 100644 --- a/src/image.c +++ b/src/image.c @@ -289,7 +289,9 @@ void draw_detections(image im, detection *dets, int num, float thresh, char **na if(right > im.w-1) right = im.w-1; if(top < 0) top = 0; if(bot > im.h-1) bot = im.h-1; - + #prints the positing of each bounding box + printf("Bounding Box: Left=%d, Top=%d, Right=%d, Bottom=%d\n", left, top, right, bot); + draw_box_width(im, left, top, right, bot, width, red, green, blue); if (alphabet) { image label = get_label(alphabet, labelstr, (im.h*.03));