Performs an inverse transform, converting this image into the space domain. The image contained in this FHT must be square and its width must be a power of 2.
()
| 72 | /** Performs an inverse transform, converting this image into the space domain. |
| 73 | The image contained in this FHT must be square and its width must be a power of 2. */ |
| 74 | public void inverseTransform() { |
| 75 | transform(true); |
| 76 | } |
| 77 | |
| 78 | public static int NO_WINDOW=0, HAMMING=1, HANN=2, FLATTOP=3; // fourier1D window function types |
| 79 |
no test coverage detected