From 9d4eed73e335d9ce7ad03c3c100612179d896a76 Mon Sep 17 00:00:00 2001 From: cuishuang Date: Fri, 8 Apr 2022 18:21:17 +0800 Subject: [PATCH] fix some typos Signed-off-by: cuishuang --- easyocr/craft_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easyocr/craft_utils.py b/easyocr/craft_utils.py index 40209d230..c319f8e71 100644 --- a/easyocr/craft_utils.py +++ b/easyocr/craft_utils.py @@ -9,12 +9,12 @@ import math from scipy.ndimage import label -""" auxilary functions """ +""" auxiliary functions """ # unwarp corodinates def warpCoord(Minv, pt): out = np.matmul(Minv, (pt[0], pt[1], 1)) return np.array([out[0]/out[2], out[1]/out[2]]) -""" end of auxilary functions """ +""" end of auxiliary functions """ def getDetBoxes_core(textmap, linkmap, text_threshold, link_threshold, low_text, estimate_num_chars=False):