()
| 453 | } |
| 454 | |
| 455 | void redisplayPowerSpectrum() { |
| 456 | FHT fht = (FHT)imp.getProperty("FHT"); |
| 457 | if (fht==null) |
| 458 | {IJ.error("FFT", "Frequency domain image required"); return;} |
| 459 | ImageProcessor ps = fht.getPowerSpectrum(); |
| 460 | imp.setProcessor(null, ps); |
| 461 | } |
| 462 | |
| 463 | public static void swapQuadrants(ImageProcessor ip) { |
| 464 | long time0 = System.currentTimeMillis(); |
no test coverage detected