필터 지우기
필터 지우기

How can I findout mean,standard deviation and variance using hiatogram of an image

조회 수: 1 (최근 30일)
I have an image of 256X256. I constructed histogram for that image. Now I want extract parameters(mean, standard deviation and variance) using the histogram. Can anyone help. Thanks in advance
  댓글 수: 1
Jan
Jan 2013년 7월 12일
It depends on what "constructed histogram" eactly means. Is this available as diagram, vector, printed on paper or an image file? As far as this detailed is clear, it does not matter if the original data belong to an image or a set of stock prices.

댓글을 달려면 로그인하십시오.

답변 (1개)

Iain
Iain 2013년 7월 12일
Easier to do that straight from the image:
my_image = uint16(randn(128,128)*16383);
std_of_my_image = double(std(my_image(:)));
var_of_my_image = std_of_my_image^2;
mean_of_my_image = mean(my_image(:));

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by