How to find the number of letters in the image?

조회 수: 1 (최근 30일)
betty
betty 2022년 1월 6일
답변: yanqi liu 2022년 1월 7일
how do I find out how many letters are in the image below and print them on the image?
  댓글 수: 1
Walter Roberson
Walter Roberson 2022년 1월 6일
I know the three dots is the Morse Code for the letter 'S', but in Braille it would be '31' which is a different number of characters, so I don't think thise question has an actual answer.

댓글을 달려면 로그인하십시오.

채택된 답변

yanqi liu
yanqi liu 2022년 1월 7일
clc; clear all; close all;
img = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/855210/image.png');
figure; imshow(img);
bw = im2bw(img);
bw = imclose(bw, strel('line', 3, 90));
bw = bwareaopen(bw, 17);
[~,num] = bwlabel(bw);
img2 = insertText(img, [3 size(img,1)*0.8], sprintf('find %d letters',num),'FontSize',18,'BoxColor',...
'r','BoxOpacity',0.8,'TextColor','white');
figure; imshow(img2);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by