MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / inverse

Method inverse

ij/src/main/java/ij/plugin/FFT.java:174–180  ·  view source on GitHub ↗

Performs an inverse FHT transform. @param imp A frequency domain image @return A spatial domain version of the input image @see #forward @see #filter

(ImagePlus imp)

Source from the content-addressed store, hash-verified

172 * @see #filter
173 */
174 public static ImagePlus inverse(ImagePlus imp) {
175 FFT fft = new FFT();
176 fft.imp = imp;
177 fft.showOutput = false;
178 fft.run("inverse");
179 return fft.imp2;
180 }
181
182 /**
183 * Does frequency domain fitering of the speciified image

Callers 1

filterMethod · 0.95

Calls 1

runMethod · 0.95

Tested by

no test coverage detected