From 1b7a1a0f33538c9544ad4bf693b4a4247a5548b8 Mon Sep 17 00:00:00 2001 From: AlexeyAB Date: Mon, 28 May 2018 19:02:05 +0300 Subject: [PATCH] Fixed top-coordinate output when -ext_output is used for video --- src/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/image.c b/src/image.c index eb8c6d56..7545e7db 100644 --- a/src/image.c +++ b/src/image.c @@ -536,7 +536,7 @@ void draw_detections_cv_v3(IplImage* show_img, detection *dets, int num, float t cvRectangle(show_img, pt1, pt2, color, width, 8, 0); if (ext_output) printf("\t(left_x: %4.0f top_y: %4.0f width: %4.0f height: %4.0f)\n", - (float)left, (float)right, b.w*show_img->width, b.h*show_img->height); + (float)left, (float)top, b.w*show_img->width, b.h*show_img->height); else printf("\n"); cvRectangle(show_img, pt_text_bg1, pt_text_bg2, color, width, 8, 0);