Home > テキスト認識


TesseractのPSMモード: テキスト認識のための多様な方法

PSMモード 0: OSD_ONLY このモードでは、テキストの向きとスクリプトの検出のみが行われます。テキスト自体は認識されません。import pytesseract from PIL import Image image = Image.open('image.png') text = pytesseract.image_to_osd(image, config='--psm 0') print(text)>>More