Xingyi Zhang

Results 2 comments of Xingyi Zhang

sorry for my ignorance, i messed the screenshot, the actual screenshot is this: ![Image](https://github.com/user-attachments/assets/ac4311b2-8108-47ee-9da6-6d61b1c649eb) 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)...