gpt4 book ai didi

matlab - 使用 FFT 和 IFFT 对彩色图像进行低通滤波

转载 作者:太空宇宙 更新时间:2023-11-03 19:53:34 25 4
gpt4 key购买 nike

我正在尝试对彩色图像应用 FFT。我提取了三个分量:红色、绿色和蓝色,然后将 fft2 分别应用于每个分量,然后在每个平面中应用高斯滤波器。现在我试图在模糊后显示红色、绿色和蓝色分量。之后,我应用 ifft2 来获得结果。

我的问题是我在每个组件中看到一个灰色图像。我试图只显示颜色平面,但我的代码不起作用。此外,我想将这三个组件组合在一起以返回全彩色图像。我在下面写了以下代码。谁能告诉我我做错了什么?

% Calculate FFT for R , G , B images

I = imread ('lena.jpg');

% Extract three images
Red = I (: , : , 1);
Green = I (: , : , 2);
Blue = I(: , : , 3);

f_r = fftshift (Red);
F_r = fft2 (f_r);

f_g = fftshift (Green);
F_g = fft2 (f_g);

f_b = fftshift (Blue);
F_b = fft2 (f_b);

% Calculate the gaussian filter then find its FFT
h = fspecial( 'gaussian', [512 512] , 3.0 );
h = fftshift (h);
H = fft2(h); % Fourier Transform of 2D Gaussian

FF_R = H .* F_r ;

FF_G = H .* F_g;

FF_B = H .* F_b;

% This is to get red, green and blue images
b = zeros(512, 512);

% Inverse IFFT _RED
Ir = ifftshift(FF_R);
Irr= ifft2 (Ir);
I_R = fftshift (Irr);
IFF_R = 1 + log (abs(I_R));
figure , imshow (IFF_R , [ ]);

Con1 = im2uint8(IFF_R);
just_red_2 = cat(3, Con1, b, b);
figure, imshow (just_red_2);


% Inverse IFFT _Green
Ig = ifftshift(FF_G);
Igg= ifft2 (Ig);
I_G = fftshift (Igg);
figure , imshow (1+ log(abs(I_G)), [ ]);
just_green_2 = cat(3, b, I_G, b);
%figure, imshow (1 + log(abs(just_green_2)) );

% Inverse IFFT Blue
Ib = ifftshift(FF_B);
Ibb= ifft2 (Ib);
I_B = fftshift (Ibb);
figure , imshow (1+ log(abs(I_B)), [ ]);
just_blue_2 = cat(3, b,b, I_B);
%figure, imshow (1 + log(abs(just_blue_2)) );


%Combine the three component togather
%full_image2 = cat (3, FF_R , FF_G , FF_B);
full_image2 = cat (3, just_red_2 (:,:,1) , just_green_2(:,:,2) , just_blue_2(:, :, 3));
%full_image2 (: , : , 1) = FF_R (: , : , 1);
%full_image2 (: , : , 2) = FF_G (: , : , 2);
%full_image2 (: , : , 3) = FF_B (: , : , 3);
Full = ifft2 ( ifftshift(full_image2));
figure, imshow (Full , [ ])

Final = fftshift(Full);
figure , imshow ( full_image2 )

最佳答案

您正在进行大量不必要的计算。单独过滤平面后,您可以立即将它们组合起来。此外,您的红色组件正在执行 log 转换,而其他颜色 channel 没有执行此操作。此外,您实际上需要在转换图像后执行 fftshift,以便您可以将光谱居中。您首先执行了 fftshift,这是不正确的。同样的事情需要应用于您的过滤器定义。过滤图像后,您必须小心地反转操作。正向转换包括执行 fft2,然后执行 fftshift。反向操作要求您先 ifftshift,然后是 ifft2。您的操作方向相反。

我需要强调的一件事是,您需要将图像平面转换到两倍以保持计算精度不变。您不需要这样做,因此所有计算都在 uint8 中完成。

还需要注意的是,执行 ifft2 后可能会有一些剩余的虚部值,因此最好使用 real 来消除虚部。根据您的意见,我制作了一个图形,显示红色、绿色和蓝色组件,它们的色调完好无损,以及 2 x 2 Pane 中的最终模糊图像。

有了这个,这里是您的代码修改以适应我的意见。你也没有在你的帖子中包含你的图片,但我在维基百科上使用了 Lena 的一个版本:

现在,请记住我删除了您的许多代码以实现您的目标:

% Calculate FFT for R , G , B images

I = imread ('https://upload.wikimedia.org/wikipedia/en/2/24/Lenna.png');

I = double(I); %// Change - cast to double

% Extract three images
Red = I (: , : , 1);
Green = I (: , : , 2);
Blue = I(: , : , 3);

% // Change - Transform, then shift
f_r = fft2(Red);
F_r = fftshift(f_r);

f_g = fft2(Green);
F_g = fftshift(f_g);

f_b = fft2(Blue);
F_b = fftshift(f_b);

% Calculate the gaussian filter then find its FFT
h = fspecial( 'gaussian', [512 512] , 3.0 );

%// Change - Filter, then FFT shift
H = fft2(h); % Fourier Transform of 2D Gaussian
H = fftshift(H);

% // Now filter
FF_R = H .* F_r ;
FF_G = H .* F_g;
FF_B = H .* F_b;

%// Change - perform ifftshift, then ifft2, then cast to real
% Inverse IFFT _RED
Ir = ifftshift(FF_R);
Irr = fftshift(real(ifft2(Ir)));

% Inverse IFFT _Green
Ig = ifftshift(FF_G);
Igg = fftshift(real(ifft2(Ig)));

% Inverse IFFT _Blue
Ib = ifftshift(FF_B);
Ibb = fftshift(real(ifft2(Ib)));

%// Visualize the red, green and blue components
b = zeros(512, 512, 'uint8');
image_red = cat(3,Irr, b, b);
image_green = cat(3, b, Igg, b);
image_blue = cat(3, b, b, Ibb);

%Combine the three component together
%// Change - Removed fluff
b = uint8(cat(3, Irr, Igg, Ibb));

%// NEW - Display each component as well as the final image in a new figure
figure;
subplot(2,2,1);
imshow(image_red);
subplot(2,2,2);
imshow(image_green);
subplot(2,2,3);
imshow(image_blue);
subplot(2,2,4);
imshow(b);

这是我得到的数字:

enter image description here

关于matlab - 使用 FFT 和 IFFT 对彩色图像进行低通滤波,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26744673/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com