How to transport a ROI

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

How to transport a ROI

rabih assaf-2
Hello,
How to transport a ROI to be alone in another image?
Thanks in advance
     
--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: How to transport a ROI

ctrueden
Hi Rabih,

> How to transport a ROI to be alone in another image?

Try the "Restore Selection" command. Edit > Selection menu, or press L for
the Command Finder.

-Curtis

On Mon, Mar 16, 2015 at 7:47 AM, rabih assaf <[hidden email]>
wrote:

> Hello,
> How to transport a ROI to be alone in another image?
> Thanks in advance
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: How to transport a ROI

rabih assaf-2
Thank you,
What i mean in my question is to make a new image containing only the selected ROI?
How can i do it?
Thanks

> Date: Mon, 16 Mar 2015 09:44:00 -0500
> From: [hidden email]
> Subject: Re: How to transport a ROI
> To: [hidden email]
>
> Hi Rabih,
>
> > How to transport a ROI to be alone in another image?
>
> Try the "Restore Selection" command. Edit > Selection menu, or press L for
> the Command Finder.
>
> -Curtis
>
> On Mon, Mar 16, 2015 at 7:47 AM, rabih assaf <[hidden email]>
> wrote:
>
> > Hello,
> > How to transport a ROI to be alone in another image?
> > Thanks in advance
> >
> > --
> > ImageJ mailing list: http://imagej.nih.gov/ij/list.html
> >
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
     
--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: How to transport a ROI

ctrueden
Hi Rabih,

> What i mean in my question is to make a new image containing only the
> selected ROI?

Edit > Clear Outside
Image > Crop

-Curtis

On Mon, Mar 16, 2015 at 10:55 AM, rabih assaf <[hidden email]>
wrote:

> Thank you,
> What i mean in my question is to make a new image containing only the
> selected ROI?
> How can i do it?
> Thanks
>
> > Date: Mon, 16 Mar 2015 09:44:00 -0500
> > From: [hidden email]
> > Subject: Re: How to transport a ROI
> > To: [hidden email]
> >
> > Hi Rabih,
> >
> > > How to transport a ROI to be alone in another image?
> >
> > Try the "Restore Selection" command. Edit > Selection menu, or press L
> for
> > the Command Finder.
> >
> > -Curtis
> >
> > On Mon, Mar 16, 2015 at 7:47 AM, rabih assaf <[hidden email]>
> > wrote:
> >
> > > Hello,
> > > How to transport a ROI to be alone in another image?
> > > Thanks in advance
> > >
> > > --
> > > ImageJ mailing list: http://imagej.nih.gov/ij/list.html
> > >
> >
> > --
> > ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: How to transport a ROI

Jan Eglinger
In reply to this post by rabih assaf-2
Hi Rabih,

you possibly want to use the command 'Image > Duplicate...', or just
press Shift-D.

Jan


On 16.03.2015 16:55, rabih assaf wrote:

> Thank you,
> What i mean in my question is to make a new image containing only the selected ROI?
> How can i do it?
> Thanks
>
>> Date: Mon, 16 Mar 2015 09:44:00 -0500
>> From: [hidden email]
>> Subject: Re: How to transport a ROI
>> To: [hidden email]
>>
>> Hi Rabih,
>>
>>> How to transport a ROI to be alone in another image?
>>
>> Try the "Restore Selection" command. Edit > Selection menu, or press L for
>> the Command Finder.
>>
>> -Curtis
>>
>> On Mon, Mar 16, 2015 at 7:47 AM, rabih assaf <[hidden email]>
>> wrote:
>>
>>> Hello,
>>> How to transport a ROI to be alone in another image?
>>> Thanks in advance
>>>
>>> --
>>> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>>>
>>
>> --
>> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>    
> --
> ImageJ mailing list: http://imagej.nih.gov/ij/list.html
>

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html
Reply | Threaded
Open this post in threaded view
|

Re: How to transport a ROI

Olivier Burri
 
> On 16.03.2015 16:55, rabih assaf wrote:
> > Thank you,
> > What i mean in my question is to make a new image containing only the
> selected ROI?
> > How can i do it?
> > Thanks

If you just want the ROI, in a new image, then please define what you mean by new image.
A new image that has the same size as the original? An image that fits the ROI as snuggly as possible?

For the first case, something in the lines of
1. Make a new image with the same size
2. use Restore selection to place the last ROI onto the new image.

In macro language you can run this:
getDimensions(x,y,c,z,t);
newImage("New Image with Previous ROI", "8-bit black", x, y, 1);
run("Restore Selection");

Otherwise you can use the method given to you by Jan.


Best

Oli

--
ImageJ mailing list: http://imagej.nih.gov/ij/list.html