Skip to content

Commit

Permalink
Merge pull request JaidedAI#703 from cuishuang/master
Browse files Browse the repository at this point in the history
fix some typos
  • Loading branch information
rkcosmos authored Apr 9, 2022
2 parents b4a73f2 + 2b459b2 commit 5b3a13f
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 5b3a13f

Please sign in to comment.