rotation.m

来自「Matlab code to reconstruct using back pr」· M 代码 · 共 8 行

M
8
字号
%Program To Rotate Image with different angles
%Rotate the Image either X-axis OR Y-axis
clear;
I=imread('elip3.jpeg');
J1 = imrotate(I,5);    %Rotation at X-axis(Rows)
J2 = imrotate(I,10);    %Rotation at Y-axis(Columns)
imshow(J1)
figure, imshow(J2)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?