kurtosis and skewness

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

kurtosis and skewness

Jerry (Gerald) Sedgewick
Is there documentation about the code used to derive kurtosis and
skewness from the Measure function in Image J?

Jerry

--
Jerry (Gerald) Sedgewick
Author: "Scientific Imaging with Photoshop: Methods, Measurement and Output."

Sedgewick Initiatives
965 Cromwell Avenue
Saint Paul, MN  55114
651-788-2261
[hidden email]
http://www.quickphotoshop.com
http://www.rawlight.com
http://www.jerrysedgewick.com
Reply | Threaded
Open this post in threaded view
|

Re: kurtosis and skewness

BenTupper
Hi,

On Jun 2, 2010, at 7:35 PM, Jerry (Gerald) Sedgewick wrote:

> Is there documentation about the code used to derive kurtosis and  
> skewness from the Measure function in Image J?
> Jerry
>

If you only want the user docs you can find them here...

        http://rsb.info.nih.gov/ij/docs/menus/analyze.html#set



But you said "documentation about the code", so your best bet is to  
examine the code itself. Check out the source online at

        http://rsb.info.nih.gov/ij/developer/source/index.html

and look for image class that extends ImageStatistics.  For example,  
if you want to see how it is done for a byte image, check out  
ByteStatistics.  Once there, you'll see the calculateMoments method.

Cheers,
Ben