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

Method doFHTInverseTransform

ij/src/main/java/ij/plugin/FFT.java:531–541  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

529 }
530
531 void doFHTInverseTransform() {
532 FHT fht = new FHT(imp.getProcessor().duplicate(), true);
533 swapQuadrants(fht);
534 fht.inverseTransform();
535 fht.resetMinAndMax();
536 String name = WindowManager.getUniqueName(imp.getTitle().substring(7));
537 IJ.showProgress(1.0);
538 ImagePlus img = new ImagePlus(name, fht);
539 img = unpad(img);
540 img.show();
541 }
542
543 void doComplexInverseTransform() {
544 ImageStack stack = imp.getStack();

Callers 1

runMethod · 0.95

Calls 11

swapQuadrantsMethod · 0.95
inverseTransformMethod · 0.95
getUniqueNameMethod · 0.95
showProgressMethod · 0.95
unpadMethod · 0.95
showMethod · 0.95
substringMethod · 0.80
getTitleMethod · 0.65
duplicateMethod · 0.45
getProcessorMethod · 0.45
resetMinAndMaxMethod · 0.45

Tested by

no test coverage detected