画像の周波数領域におけるフィルタ処理
Show older comments
画像をフーリエ変換して表示する所までは出来ました。しかし、そこからマスク処理を行い逆変換をし、ハイパスなりローパスなりのフィルタ処理を行う方法が分かりませんご教授お願い致します。
img=imread('C:/SNR/slow40s_same.bmp');
imshow(img)
FFT=fft2(img);
Fimg=figure;imshow(log(abs(fftshift(FFT))),[])
Accepted Answer
More Answers (0)
Categories
Find more on イメージ カテゴリの分類と画像検索 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!