MATLAB: Find geometric mean and arithmetic mean

geometric arithmetic

how to find geometric mean and arithmetic mean of histogram of an image

Best Answer

I = imread('pout.tif');
a=imhist(I);
arithmeticmean=mean(a);
geometricmean=geomean(a);
Related Question