Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by