How can i get a magnitue of an image?

3 Ansichten (letzte 30 Tage)
Hashem Burki
Hashem Burki am 22 Mai 2011
I have got a grayscale image and i want to find its magnitude. As in that image should return a single scalar number.

Antworten (1)

Walter Roberson
Walter Roberson am 23 Mai 2011
What do you mean by the magnitude of a grayscale image? Do you want the average pixel intensity, or do you want the total pixel intensity, or something else? And are you trying to do this in Simulink or in MATLAB?
Total intensity:
sum(YourImage(:))
Average intensity:
mean(YourImage(:))

Kategorien

Mehr zu Computer Vision Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by