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

 Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 16 Déc 2016

0 votes

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);
 

Plus de réponses (0)

Catégories

Produits

Version

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by