how to calculate width and length of binary image?

14 vues (au cours des 30 derniers jours)
sou
sou le 18 Oct 2014
Commenté : sou le 20 Oct 2014
I need to calculate width and length of the binary image... PLZ SUGGEST A WAY

Réponse acceptée

Image Analyst
Image Analyst le 18 Oct 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 commentaires
sou
sou le 20 Oct 2014
ok sir i will check this...
sou
sou le 20 Oct 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

Connectez-vous pour commenter.

Plus de réponses (1)

Matt J
Matt J le 18 Oct 2014
Modifié(e) : Matt J le 18 Oct 2014
The size() command?
[Width,Length]=size(binaryImage);

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by