Extracting multiple numerical values from an image

1 回表示 (過去 30 日間)
Mohsin Shah
Mohsin Shah 2020 年 11 月 26 日
コメント済み: Mohsin Shah 2021 年 2 月 4 日
Is it possible
to extract multiple numerical values from the this image?

採用された回答

yanqi liu
yanqi liu 2021 年 2 月 1 日
clc; clear all; close all;
img = imread('demo.jpg');
J = rgb2hsv(img);
s = mat2gray(J(:,:,2));
bw = im2bw(s, 0.2);
bw = imclose(bw, strel('line', 5, 0));
bw = bwareaopen(bw, 6);
stats = regionprops(bw);
figure;
imshow(img);
for i = 1 : length(stats)
rect = stats(i).BoundingBox;
hold on; rectangle('Position', rect, 'EdgeColor', 'm', 'LineWidth', 1);
if rect(3) > 20
rectangle('Position', rect, 'EdgeColor', 'r', 'LineWidth', 1);
imi = imcrop(img, round(rect));
imi2 = imresize(imi, 3, 'bilinear');
txt = ocr(imi2);
text(rect(1), rect(2)-rect(4)/2, txt.Words{1}, 'Color', 'g', 'FontSize', 16)
end
end
  1 件のコメント
Mohsin Shah
Mohsin Shah 2021 年 2 月 4 日
Thank you for this answer.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLanguage Support についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by