Skip to content

Commit

Permalink
fix some typos
Browse files Browse the repository at this point in the history
Signed-off-by: cuishuang <imcusg@gmail.com>
  • Loading branch information
cuishuang committed Apr 8, 2022
1 parent 9192676 commit 2b459b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easyocr/craft_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 2b459b2

Please sign in to comment.