Xingyi Zhang
Results
2
comments of
Xingyi Zhang
sorry for my ignorance, i messed the screenshot, the actual screenshot is this:  and easy_ocr happens to identify `ls /home/user` as `I5 Ihome/user`
btw, paddleocr is able to identify the correct commands. ```python def compare_image_text(image_path, rule): if not image_path: return 0 from paddleocr import PaddleOCR ocr = PaddleOCR(use_angle_cls=True, lang="en", use_debug=False) result = ocr.ocr(image_path)...