how to get data from fig use matlab

2 ビュー (過去 30 日間)
wenchao zhang
wenchao zhang 2024 年 8 月 7 日
コメント済み: wenchao zhang 2024 年 8 月 8 日
hi, i want get four colums data from the following fig, how to use matlab to realize this.

採用された回答

Ganesh
Ganesh 2024 年 8 月 7 日
You've the best chance with this problem by using an OCR. I have attached a sample code for OCR on your table image, but I see that the results are not the best/most accurate. I would suggest you to go through the documentation link attached at the bottom to learn how you could best optimize the OCR.
img = imread("批注 2024-08-07 111325.png");
t = ocr(img,LayoutAnalysis="page");
Iocr = insertObjectAnnotation(img,"rectangle", ...
t.WordBoundingBoxes,t.Words,LineWidth=2,FontSize=8);
figure
imshow(Iocr)
Object Character Recognition in MATLAB:
Hope this helps!
  2 件のコメント
wenchao zhang
wenchao zhang 2024 年 8 月 8 日
編集済み: wenchao zhang 2024 年 8 月 8 日
thanks for your suggestion, but the script run on my matlab seems have some problem.
wenchao zhang
wenchao zhang 2024 年 8 月 8 日
need take some time to check how to use ocr

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by