Effacer les filtres
Effacer les filtres

How to find the sum of each element of a matrix?

2 vues (au cours des 30 derniers jours)
peyush
peyush le 28 Juin 2015
Commenté : peyush le 28 Juin 2015
I have a binary image with some pixel values 1 and rest 0...I want to find out the sum of all the pixel values in the image...can any one help?

Réponse acceptée

dpb
dpb le 28 Juin 2015
If x is the array,
xsum=sum(x(:)); % ":" is a Matlab idiom that returns all elements in a column vector
  3 commentaires
Image Analyst
Image Analyst le 28 Juin 2015
That will work regardless of how many dimensions x has. By the way, a matrix is an array.
peyush
peyush le 28 Juin 2015
thanks both of you :-)

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by