我想用matlab把一张512*512的灰度图像素拓展成1024*1024,不知怎么着手,求指导,求相关文章指导
1个回答
展开全部
% 给个代码参考下
I=imread('000.jpg');
subplot(2,2,1);
imshow(I);
title('原图');
subplot(2,2,2);
I1=imresize(I,1.2,'nearest');
imshow(I);
title('最近邻法放大1.2倍');
subplot(2,2,3);
I2=imresize(I,1.2,'bilinear');
imshow(I2);
title('双线性插值法放大1.2倍');
subplot(2,2,4);
I3=imresize(I,1.2,'bicubic');
imshow(I3);
title('双三次插值放大1.2倍');
grid on
I=imread('000.jpg');
subplot(2,2,1);
imshow(I);
title('原图');
subplot(2,2,2);
I1=imresize(I,1.2,'nearest');
imshow(I);
title('最近邻法放大1.2倍');
subplot(2,2,3);
I2=imresize(I,1.2,'bilinear');
imshow(I2);
title('双线性插值法放大1.2倍');
subplot(2,2,4);
I3=imresize(I,1.2,'bicubic');
imshow(I3);
title('双三次插值放大1.2倍');
grid on
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询