how can I use higher order statistics in an image?

3 次查看(过去 30 天)
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

采纳的回答

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