【Matlab】图像处理——图片的缩小

clear all;
close all;
[X,map]=imread('trees.tif','tif');
[Y,newmap]=imresize(X,map,0.5);
figure;
subimage(X,map);
figure;
subimage(Y,newmap);
发布了57 篇原创文章 · 获赞 13 · 访问量 3212

猜你喜欢

转载自blog.csdn.net/qq_41985559/article/details/104102607