图像旋转和缩放

Image Rotation

     

 

I=imread('02.tif');
J=imrotate( I,60,'bilinear') %显示全部
K=imrotate(I,60,'bilinear','crop'); %剪切
subplot(1,3,1);imshow(I);
subplot(1,3,2);imshow(J);
subplot(1,3,3);imshow(K);

图像缩放;Image Zoom

猜你喜欢

转载自www.cnblogs.com/fcfc940503/p/11185334.html