Login  Register

Image Names an ID's

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

Image Names an ID's

David Webster
240 posts
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
| More
Print post
Permalink

Re: Image Names an ID's

Wayne Rasband
1011 posts
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
| More
Print post
Permalink

Re: Image Names an ID's

David Webster
240 posts
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
>