matlab旋转图像任意角度

话不多说上代码

filename3=imread('D:\My Documents\MATLAB\image\21.jpg');
I3=rgb2gray(filename3);
figure
imshow(I3)
figure
imshow(imrotate(I3,45,'nearest'))

matlab旋转图像任意角度_第1张图片 matlab旋转图像任意角度_第2张图片

你可能感兴趣的:(图像处理,软件编程)