Fourier transform with 2D imagesb
创建时间
Jun 13, 2024 08:37 AM
标签
Fourier transform
The fast Fourier transform (FFT) is a fast algorithm for computing the discrete Fourier transform.
− MATLAB has three functions to compute the DFT:
- fft -for one dimension (useful for audio)
- fft2 -for two dimensions (useful for images)
- fftn -for n dimensions
MATLAB has three related functions that compute the inverse DFT:
- ifft
- ifft2
- ifftn
流程梳理:
- 图像读入,预处理,例如大小等
- 傅里叶变换(变为256*256是附加在fft的)
- 功率谱
Image decomposition: filtering
使用不同的频域操作,分离低频、中频和高频图像
