関心領域を指定して日本語の文字認識を行うには
이전 댓글 표시
日本語の言語データファイルをダウンロードし、画像の関心領域を指定して、日本語の文字認識をしようとしているのですが、
以下のプログラムで日本語の文字認識をするには、どのように内容を変換すればよいですか?
I = imraed('gazou.jpg');
figure;
imshow(I);
roi = round(getPosition(imrect));
ocrResults = ocr(I, roi);
Iocr = insertText(I, roi(1:2),ocrResults.Text,'AnchorPoint',...
'leftbottom','Fontsize',32);
figure;
imshow(Iocr);
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 光学式文字認識 (OCR)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!