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

 採用された回答

MathWorks Support Team
MathWorks Support Team 2016 年 12 月 16 日

0 投票

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGeometric Transformation and Image Registration についてさらに検索

製品

リリース

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by