AlexeyAB
2018-05-08 fb56f6d569de0812923c881d3f62e6f4007518fa
src/image.c
@@ -284,7 +284,7 @@
      const int best_class = selected_detections[i].best_class;
      printf("%s: %.0f%%", names[best_class],   selected_detections[i].det.prob[best_class] * 100);
      if (ext_output)
         printf("\t(left: %.0f\ttop: %.0f\tw: %0.f\th: %0.f)\n",
         printf("\t(left: %.0f \ttop: %.0f \tw: %0.f \th: %0.f)\n",
            (selected_detections[i].det.bbox.x - selected_detections[i].det.bbox.w / 2)*im.w,
            (selected_detections[i].det.bbox.y - selected_detections[i].det.bbox.h / 2)*im.h,
            selected_detections[i].det.bbox.w*im.w, selected_detections[i].det.bbox.h*im.h);