Variance of image in matlab
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi I wanna calculate variance of image on the matlab, what is the code? My image is grayscale not RGB.
0 Kommentare
Antworten (1)
KALYAN ACHARJYA
am 14 Jul. 2019
Bearbeitet: KALYAN ACHARJYA
am 14 Jul. 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(:))
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!