MATLAB: How i can to rotate images

assignmentImage Processing Toolbox

help me in this assignment

Best Answer

Let's say the name of the image is flower.jpg
img=imread('flower.jpg'); % Reads image
rot_img=imrotate(img,90); % Rotates image
imshow(rot_img) % show image