Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MATLAB で 2D 画像のフーリエ変換の位相と大きさをプロットするにはどうすればよいですか? を使用しangleてabsから を使用imshowしていますが、黒い画像が表示されます。このプロットで の使用は何ですか?fftshift
angle
abs
imshow
fftshift
あなたのコメントから、DC オフセットを削除する必要があります。何かのようなもの:
imagesc(abs(fftshift(fft2(I - mean(I(:))))));