Re: Image Names an ID's
Posted by Wayne Rasband on Feb 22, 2009; 7:52pm
URL: http://imagej.273.s1.nabble.com/Image-Names-an-ID-s-tp3693608p3693609.html
On Feb 22, 2009, at 2:34 PM, David William Webster wrote:
> When running macros, is there anyay to make the functions in the
> Process menu create new images with new names/ID numbers?
Duplicate the image before running the filter. Here is an example:
run("Duplicate...", "title=temp");
run("Gaussian Blur...", "sigma=5");
-wayne