Posted by Jerome Mutterer-3 on Nov 11, 2013; 8:09pm URL: http://imagej.273.s1.nabble.com/objects-wit-distinct-grey-values-outline-tp5005533p5005535.html
Hi Matthias,
assuming your grey level image is 8-bit, you could run something like the
following macro:
for (i=0;i<256;i++) {
setThreshold(i, i);
run("Create Selection");
if (selectionType>0){
roiManager("Add");
run ("Select None");
}
}
Sincerely,
Jerome
On 11 November 2013 18:45, Matthias Kirsch <[hidden email]> wrote: