Inverse FFT of Stack
Posted by Roger_Almeida on Aug 05, 2015; 5:33pm
URL: http://imagej.273.s1.nabble.com/Inverse-FFT-of-Stack-tp5013910.html
Hello to everyone.
I'm just trying to automatize the Inverse FFT process. Anyone know some Macro/Plugin to apply the Inverse FFT process in a Stack of images?
I'm using this Macro to get the FFt result:
a=getTitle(); // your stack
for(i=1;i<=nSlices;i++){
setSlice(i);
run("FFT");
selectImage(a);
}
run("Images to Stack", "name=Stack title=[FFT of] use");
So I made this Macro to get the Inverse result:
a=getTitle(); // your stack
for(i=1;i<=nSlices;i++){
setSlice(i);
run("Inverse FFT");
selectImage(a);
}
run("Images to Stack", "name=Stack title=[FFT of] use");
So ImageJ give this: "Frequency domain image reguired", I got this box even using the basic command (Inverse FFT).
Thanks to all.