Re: interactive histogram
Posted by
Tiago Ferreira-2 on
URL: http://imagej.273.s1.nabble.com/interactive-histogram-tp5002623p5002631.html
Hi Agustin,
> As my images have outliers, the current Analyze/Histogram is pretty useless.
> Is there a plugin for a histogram in which you can set the min and max
> values for the plot?
When you call the command holding "Alt" ("Alt"+"H") you can specify the range of
the histogram. You can also set the limits using a simple macro, e.g.:
getStatistics(area, mean, min, max, std);
run("Histogram", "bins=256 x_min="+ mean-std +" x_max="+ mean+std +" y_max=Auto");
I came across this by looking up the documentation:
<
http://imagej.nih.gov/ij/docs/guide/146-30.html#toc-Subsection-30.10>, and
<
http://imagej.nih.gov/ij/docs/menus/analyze.html#hist>
Would this make less it useless?
-tiago
--
ImageJ mailing list:
http://imagej.nih.gov/ij/list.html