MATLAB: How to find the Statistical Properties(Mean, Standard Deviation, Skwness and Kurtosis) of image

image processingstatistical property

I = imread('C:\Users\Annalakshmi\Desktop\file\bse_gray_250.png');
offsets0 = [zeros(40,1) (1:40)'];
glcms = graycomatrix(I,'Offset',offsets0)
glcm = graycomatrix(I,'Offset',[2 0;0 2])
stats = graycoprops(glcm)
Related Question