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

 Akzeptierte Antwort

MathWorks Support Team
MathWorks Support Team am 16 Dez. 2016

0 Stimmen

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

Weitere Antworten (0)

Kategorien

Produkte

Version

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by