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: