傅里叶变换 import numpy as np import cv2 from matplotlib import pyplot as plt img = cv2.imread('cat.jpg', 0) dft = cv2.dft(np.float32(img),flags =</