Re: Duplicating FFT Images
Posted by Gabriel Landini on Dec 15, 2006; 10:55am
URL: http://imagej.273.s1.nabble.com/Duplicating-FFT-Images-tp3700817p3700818.html
On Friday 15 December 2006 10:28, Maja Temerinac wrote:
> open("E:\\Maja\\Eigene Bilder\\lena.gif");
> run("FFT");
> makeOval(197, 202, 121, 118);
> run("Fill");
> run("Duplicate...", "title=[FHT of lena.gif]");
> run("Inverse FFT");
This does what you want, I think.
open("E:\\Maja\\Eigene Bilder\\lena.gif");
run("FFT");
makeOval(197, 202, 121, 118);
run("Fill");
run("Inverse FFT");
I think that if you duplicate the FFT result image, that is considered a plain
image, not a result of the FFT.
So you need to manipulate the result of the FFT, not a duplicate of it.
Cheers,
Gabriel