| | |
| | | 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); |