OCR Posted on 2022-04-12 | In AI , OCR | GitHub - JaidedAI/EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc. Install 1pip install easyocr usage 123import easyocrreader = easyocr.Reader(['ch_sim','en']) # this needs to run only once to load the model into memoryresult = reader.readtext('chinese.jpg')