Performs a forward transform, converting this image into the frequency domain. The image contained in this FHT must be square and its width must be a power of 2.
()
| 66 | /** Performs a forward transform, converting this image into the frequency domain. |
| 67 | The image contained in this FHT must be square and its width must be a power of 2. */ |
| 68 | public void transform() { |
| 69 | transform(false); |
| 70 | } |
| 71 | |
| 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. */ |
no test coverage detected