From 2245355491bd5c2821d583dd46d291af1a8a46ed Mon Sep 17 00:00:00 2001 From: Qixing Jiang <854365695@qq.com> Date: Mon, 13 Feb 2023 12:24:00 +0800 Subject: [PATCH] Correct misspelling in scripts/read_bbox.py A harmless mistake --- scripts/read_bbox.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/read_bbox.py b/scripts/read_bbox.py index 8729949..6d59b46 100644 --- a/scripts/read_bbox.py +++ b/scripts/read_bbox.py @@ -48,7 +48,7 @@ f = open(file_path, 'w') for box in boxes_new: - # each row in a file is name of the class_name, XMin, YMix, XMax, YMax (left top right bottom) + # each row in a file is name of the class_name, XMin, YMin, XMax, YMax (left top right bottom) print(box[0], box[2], box[1], box[3], file=f) except Exception as e: - pass \ No newline at end of file + pass