Re: RoiManager "Combine"
Posted by
Ben.BigHair on
Aug 08, 2006; 3:12pm
URL: http://imagej.273.s1.nabble.com/RoiManager-Combine-tp3701796p3701801.html
Wayne Rasband wrote:
> The roiManager("select", index) function selects one ROI at a time. As a
> workaround, use setKeyDown("shift") to combine the ROIs:
>
> // combine the first two ROIs and measure
> requires("1.37i");
> roiManager("select", 0);
> setKeyDown("shift");
> roiManager("select", 1);
> setKeyDown("none");
> run("Measure");
>
> Note that there is a bug in the ROI Manager "Combine" function that
> causes it to combine all the ROIs when only one is selection. This is
> fixed in ImageJ 1.37m.
OK! and Thanks!
Ben