Fast Fourier Transform 2D
Fast Fourier Transform 2D (hereafter referred to FFT2D) is a fast algorithm based on fast Fourier transform (hereafter referred to FFT), which converts two-dimensional data from time domain to frequency domain. This algorithm can convert 2D data from time domain to frequency domain, and provide basic support for signal processing in frequency domain. It is usually used as the pre-step for frequency domain analysis of 2D data such as image.
Operator Effect
Principle
FFT2D is an extension method developed based on the FFT algorithm. It conducts FFT processing separately on two-dimensional data along both the x and y axes, thereby mapping time-domain data to frequency-domain data. The specific procedure is as follows:
- Perform FFT calculation on each row of the two-dimensional data, where nx represents the number of FFT points set in the interface parameters for the x-axis.
- Building upon the processing in step 1, perform FFT calculation on each column of the two-dimensional data, where ny represents the number of FFT points set in the interface parameters for the y-axis.
- Return the results of the calculations from step 2.
API Interface
For detailed interface information, please refer to hbFFT2D。


