We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 711d226 commit d0cc0f3Copy full SHA for d0cc0f3
README.md
@@ -38,7 +38,7 @@ Note: This functionality requires Deep Learning Toolbox™ and the Computer
38
bboxes = detectTextCRAFT(orgImg);
39
40
% Visualize results
41
- outImg = insertShape(I,"rectangle",bboxes,LineWidth=3);
+ outImg = insertShape(orgImg,"rectangle",bboxes,LineWidth=3);
42
figure; imshow(outImg);
43
```
44
@@ -56,7 +56,7 @@ Output of `detectTextCRAFT` return the bounding boxes that can be passed to `ocr
56
figure; imshow(BW);
57
58
% OCR this image using region-of-interest for OCR to avoid processing non-text background.
59
- txt = ocr(BW,roi,'LayoutAnalysis','word');
+ txt = ocr(BW,bboxes,'LayoutAnalysis','word');
60
61
% Display the recognized words.
62
recognizedWords = cat(1,txt(:).Words);
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments