how can I use higher order statistics in an image?

조회 수: 3 (최근 30일)
Rasha
Rasha 2014년 3월 4일
편집: Rasha 2014년 6월 8일
I want to use a higher order statistic on a 2D image segmentation program.
I find this code:
PD = ProbDistUnivParam('normal',Image);
but it's produce an error, "PARAMS must be a numeric vector"
thanks
  댓글 수: 1
Rasha
Rasha 2014년 3월 4일
is the result of the higher order statistics equation be image boundary?

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

채택된 답변

Rasha
Rasha 2014년 6월 8일
편집: Rasha 2014년 6월 8일
there is a pdf file have an explanation of HOS with matlab.

추가 답변 (1개)

Suneesh
Suneesh 2014년 3월 4일
You are trying to create a ProbDistUnivParam object, which represents a probability distribution. The 2nd argument (which you call 'Image') should be set as per your distribution from http://www.mathworks.com/help/stats/_brn2irf.html
  댓글 수: 2
Rasha
Rasha 2014년 3월 4일
thanks Suneesh,
I found this code in search
pd = ProbDistUnivParam(DISTNAME,PARAMS);
Y = pdf(pd, X);
k = kurtosis(Y);
is 'K' here be the order statistic result?
Rasha
Rasha 2014년 3월 4일
I want also to know the general equation of higher order statistics to implement it on 2D image. thanks

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

Community Treasure Hunt

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

Start Hunting!

Translated by