fix test_hubserving (#2071)

This commit is contained in:
xiaoting 2021-02-22 17:23:55 +08:00 committed by GitHub
parent e083b9c228
commit c3d700fa41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -64,8 +64,7 @@ def draw_server_result(image_file, res):
scores.append(res[dno]['confidence'])
boxes = np.array(boxes)
scores = np.array(scores)
draw_img = draw_ocr(
image, boxes, texts, scores, draw_txt=True, drop_score=0.5)
draw_img = draw_ocr(image, boxes, texts, scores, drop_score=0.5)
return draw_img