how to calculate width and length of binary image?

14 Ansichten (letzte 30 Tage)
sou
sou am 18 Okt. 2014
Kommentiert: sou am 20 Okt. 2014
I need to calculate width and length of the binary image... PLZ SUGGEST A WAY

Akzeptierte Antwort

Image Analyst
Image Analyst am 18 Okt. 2014
You can use the size() function:
[theLength, width] = size(binaryImage);
The first return argument, theLength, is the number of rows (the height), and the second output argument, width, is the number of columns.
As an aside, don't use length as the name of a variable since it's the name of a built-in function.
  8 Kommentare
sou
sou am 20 Okt. 2014
ok sir i will check this...
sou
sou am 20 Okt. 2014
sir but this gives wrong width for my image sir...
my image is in this link http://labs.fme.aegean.gr/decision/downloads in this link under martin2003 zip file New database pictures\normal superficiel cells are my images sir... plz try it

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Matt J
Matt J am 18 Okt. 2014
Bearbeitet: Matt J am 18 Okt. 2014
The size() command?
[Width,Length]=size(binaryImage);

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by