From 93bd46e9e2edba90e08235c8c1cf6fdbfa775d7d Mon Sep 17 00:00:00 2001 From: LDOUBLEV Date: Mon, 25 May 2020 20:54:26 +0800 Subject: [PATCH] delete support multi-line txt display --- tools/infer/utility.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/tools/infer/utility.py b/tools/infer/utility.py index c7bb5876..04ddbcd7 100755 --- a/tools/infer/utility.py +++ b/tools/infer/utility.py @@ -174,16 +174,7 @@ def draw_ocr(image, boxes, txts, scores, draw_txt=True, drop_score=0.5): continue font = ImageFont.truetype( "./doc/simfang.ttf", font_size, encoding="utf-8") - new_txt = str(count) + ': ' + txt + ' ' + '%.3f' % ( - scores[count]) - while len(new_txt) > 28: - tmp = new_txt - new_txt = tmp[:28] - draw_txt.text( - (20, gap * (count + 1)), new_txt, txt_color, font=font) - new_txt = tmp[28:] - count += 1 - + new_txt = str(idx) + ': ' + txt + ' ' + '%.3f' % (scores[idx]) draw_txt.text( (20, gap * (count + 1)), new_txt, txt_color, font=font) count += 1 -- GitLab