Variance of image in matlab
Afficher commentaires plus anciens
Hi I wanna calculate variance of image on the matlab, what is the code? My image is grayscale not RGB.
Réponses (1)
KALYAN ACHARJYA
le 14 Juil 2019
Modifié(e) : KALYAN ACHARJYA
le 14 Juil 2019
var_result=var(gray_image)
It returns the row matrix variance with respect to each column
For Complete image, try the following
var_result=var(gray_image(:))
Catégories
En savoir plus sur Image Processing Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!