I have an image. I want to rotate this image by a given angle. How do I do this?  

 Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 16 de Dic. de 2016
To rotate an image by a given angle, you can make use of the "imrotate" function in MATLAB.
As an example :
>> I = imread('pout.tif');
>> J = imrotate(I,20);
>> imshow(J);
 

Más respuestas (0)

Categorías

Productos

Versión

R2015b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by