Filter löschen
Filter löschen

how to find the height and width of an alphabet/letter

1 Ansicht (letzte 30 Tage)
praveen rai
praveen rai am 27 Mai 2019
Kommentiert: praveen rai am 27 Mai 2019
i have a letter in which I want to find the height and width of this letter
any algorithm or code can suggest by anyoneb.jpg

Akzeptierte Antwort

Image Analyst
Image Analyst am 27 Mai 2019
Try
binaryImage = grayImage < 128;
props = regionprops(binaryImage, 'BoundingBox');
width = props.BoundingBox(3);
height = props.BoundingBox(4);
  1 Kommentar
praveen rai
praveen rai am 27 Mai 2019
@Image Analyst its working for single letter but for words or for multiple letter its not working
error is "Field reference for multiple structure elements that is followed by more reference
blocks is an error."
image is
alphabet1.png

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by