Mean Greyscale Index matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How do I calculate mean N x M in 2d pictures?
Is it same is I use mean2() function?
0 Commenti
Risposte (1)
Aiswarya
il 6 Lug 2022
According to my understanding you want to calculate mean of all pixels in the image and it's a greyscale image.
So if your image is given by img you can use the function mean in the manner given below:
meanIntensity = mean(img(:));
0 Commenti
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!