Is it possible to make just the face of an image blur and turn into someone elses face using a kernel and fast fourier transform?
So far I got the entire image to blur with FFT. what modifications, add ons do i have to do?
thank you

 採用された回答

Walter Roberson
Walter Roberson 2013 年 11 月 9 日

0 投票

For example:
N = 20; %steps
FFT1 = fft2(Image1);
FFT2 = fft2(Image2);
delta = (FFT2 - FFT1) ./ N;
for K = 0 : N
IM3 = ifft(FFT1 + K * delta);
image(real(IM3));
pause(2);
end

1 件のコメント

Rosario
Rosario 2013 年 11 月 20 日
Thank you!

サインインしてコメントする。

その他の回答 (0 件)

質問済み:

2013 年 11 月 9 日

コメント済み:

2013 年 11 月 20 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by