フィルターのクリア

Rotate an image without having a deformation

2 ビュー (過去 30 日間)
Ouael Chkoundali
Ouael Chkoundali 2019 年 1 月 29 日
回答済み: DGM 2022 年 12 月 1 日
Hello,
I am trying to rotate an image by X degrees using imrotate. But if X isn't equal to 90 or -90, the image will be deformed. An example:
0 degree.png
18 degrees.png
Is there any another solution?

採用された回答

KSSV
KSSV 2019 年 1 月 29 日

その他の回答 (1 件)

DGM
DGM 2022 年 12 月 1 日
From the documentation:
B = imrotate(A,ANGLE,METHOD,BBOX) rotates image A, where BBOX specifies
the size of the output image B. BBOX is a text string that can have
either of the following values. The default value is enclosed in braces
({}).
{'loose'} Make output image B large enough to contain the
entire rotated image. B is generally larger than A.
'crop' Make output image B the same size as the input image
A, cropping the rotated image to fit.
In other words, the default behavior does not crop the image. If the image is being cropped, it's either because you're cropping it, or it's because you're not using imrotate().
A = imread('cameraman.tif');
B = imrotate(A,20); % default behavior
imshow(B) % no cropping

カテゴリ

Help Center および File ExchangeImage Processing and Computer Vision についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by