minor fix

This commit is contained in:
AlexeyAB 2020-07-08 00:20:31 +03:00
parent 37753e0cb4
commit 5f598eecdf
1 changed files with 1 additions and 1 deletions

View File

@ -895,7 +895,7 @@ extern "C" void draw_detections_cv_v3(mat_cv* mat, detection *dets, int num, flo
class_id = j;
char buff[20];
if (dets[i].track_id) {
sprintf(buff, " (track = %d)", dets[i].track_id);
sprintf(buff, " (id: %d)", dets[i].track_id);
strcat(labelstr, buff);
}
sprintf(buff, " (%2.0f%%)", dets[i].prob[j] * 100);