roiManager show without labels

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

roiManager show without labels

Himanish Ghosh
Hello All,

 I have written a macro which would superimpose the ROIs from ROI
manager onto another window in the required color.

However I am not interested in the roi numbers, in fact I do not want them
there.

in the macro however the
roiManager("Show All without labels");

does not seem to work as well ticking off the edit mode in the ROI manager
dialog box.

I have imageJ 1.45b installed.

does it work for anyone else?

thanks
Reply | Threaded
Open this post in threaded view
|

Re: roiManager show without labels

Yashka Oreza
Himanish Ghosh wrote
roiManager("Show All without labels");

does not seem to work as well ticking off the edit mode in the ROI manager
dialog box.

I have imageJ 1.45b installed.

does it work for anyone else?

thanks
No, I am trying to do the same thing and cannot get it to work either.
Reply | Threaded
Open this post in threaded view
|

Re: roiManager show without labels

Nathaniel Ryckman
In reply to this post by Himanish Ghosh
I looked at the Java code for the RoiManager class.

Check overlay off:
roiManager("show none");

Then check overlay back on:
roiManager("show all without labels);

Himanish Ghosh wrote
Hello All,

 I have written a macro which would superimpose the ROIs from ROI
manager onto another window in the required color.

However I am not interested in the roi numbers, in fact I do not want them
there.

in the macro however the
roiManager("Show All without labels");

does not seem to work as well ticking off the edit mode in the ROI manager
dialog box.

I have imageJ 1.45b installed.

does it work for anyone else?

thanks