프로젝트

일반

사용자정보

개정판 1c955c14

ID1c955c14d5b8fd31507f984ef1d26c78a1034625
상위 5f913eaa
하위 e5af02a0

함의성이(가) 약 6년 전에 추가함

issue #501: tile bug fixed

차이점 보기:

DTI_PID/DTI_PID/tesseract_ocr_module.py
71 71
"""
72 72
def getTextInfo(img, startPoint, angle, language, flag = FLAG_IMAGE_TO_BOXES, conf = None):
73 73
    try:
74
        if img.shape == (0,0):
75
            return
76 74
        os.environ['TESSDATA_PREFIX'] = os.path.join(tesseract_path, 'tessdata')
77 75
        textInfoList = []
78 76

  
......
132 130
            #height = rect.height() + 4 if rect.height() + 4 <= im.size[1] else rect.height()
133 131
            #text_rect = QRect(left, top, width, height)
134 132
            cropped = im.crop((rect.left(), imgHeight - rect.bottom(), rect.right(), imgHeight - rect.top()))
133
            if cropped.width == 0 or cropped.height == 0:
134
                continue
135 135
            text = pytesseract.image_to_string(cropped, config=conf, lang=oCRLang)
136 136

  
137 137
            if rect.height() >= minSize and rect.height() <= maxSize:

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)