Re: Showing the cumulative histogram of a picture
Posted by
jmutterer on
URL: http://imagej.273.s1.nabble.com/Showing-the-cumulative-histogram-of-a-picture-tp3693377p3693378.html
Dear Stian,
This macro will plot a simple cumulative histogram:
// Cumulative Histogram
getRawStatistics(area, mean, min, max, std, h);
for (i=1;i< h.length;i++) h[i] = h[i-1]+h[i] ;
Plot.create("Cumulative Histogram of "+getTitle, "Value", "Sum of pixel
count", h);
Plot.show();
// end
Sincerely,
Jerome.
On Mon, Mar 9, 2009 at 1:02 PM, Tafsen <
[hidden email]> wrote: