how to calculate width and length of binary image?

13 visualizzazioni (ultimi 30 giorni)
I need to calculate width and length of the binary image... PLZ SUGGEST A WAY

Risposta accettata

Image Analyst
Image Analyst il 18 Ott 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 Commenti
sou
sou il 20 Ott 2014
ok sir i will check this...
sou
sou il 20 Ott 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

Accedi per commentare.

Più risposte (1)

Matt J
Matt J il 18 Ott 2014
Modificato: Matt J il 18 Ott 2014
The size() command?
[Width,Length]=size(binaryImage);

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by