You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
大家好,我是一个刚开始学习使用paddleocr的新手,最近尝试使用paddleocr对一张工程图中的文字进行识别,图片分辨率为6624*4662,使用了切片操作进行识别,发现结果中一些相距不是很远的文本有的能被识别,有的无法被识别,请问这是什么原因呢?需要改动代码的那些部分来降低漏识别的情况?

slice = {'horizontal_stride': int(wide/10), 'vertical_stride': int(hight/10), 'merge_x_thres': 20, 'merge_y_thres': 10} ocr = PaddleOCR(use_angle_cls=True, lang="ch",use_gpu = True) result = ocr.ocr(image, cls=True,slice = slice)
Beta Was this translation helpful? Give feedback.
All reactions