Image Names an ID's

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

Image Names an ID's

David Webster
When running macros, is there anyay to make the functions in the Process
menu create new images with new names/ID numbers?

David Webster
Reply | Threaded
Open this post in threaded view
|

Re: Image Names an ID's

Wayne Rasband
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
Reply | Threaded
Open this post in threaded view
|

Re: Image Names an ID's

David Webster
Thats what I've been doing, it's just kind of clumsy is all.

I should break down and learn Java, but have been having trouble finding a
self learing resource that was any good.

David Webster

On Sun, Feb 22, 2009 at 11:52 AM, Rasband Wayne <[hidden email]> wrote:

> 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
>