Find geometric mean and arithmetic mean

35 views (last 30 days)
how to find geometric mean and arithmetic mean of histogram of an image

Accepted Answer

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH on 11 Nov 2019
I = imread('pout.tif');
a=imhist(I);
arithmeticmean=mean(a);
geometricmean=geomean(a);

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!