rotation.asv

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

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

⌨️ 快捷键说明

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