资源简介
对图像进行傅立叶变换和离散余弦变换,并分别求出其逆变换后重构图像的均方误差。调用women图片。
代码片段和文件信息
clc;
clear;
close all;
load woman.mat;
a1=fft2(double(X));
a2=ifft2(a1);
b1=dct2(double(X));
b2=idct2(b1);
fmse=qmse(a2X);
dmse=qmse(b2X);
figure(1)
subplot(131);imshow(uint8(X));title(‘原图像‘);
subplot(132);imshow(uint8(a2));title(‘傅立叶重构图像‘);
subplot(133);imshow(uint8(b2));title(‘DCT重构图像‘);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 325 2010-06-21 16:44 fd.m
文件 103 2010-06-21 16:44 qmse.m
----------- --------- ---------- ----- ----
428 2
评论
共有 条评论