How to retain the size of image when we rotate image?

조회 수: 10 (최근 30일)
binbin cui
binbin cui 2016년 8월 6일
댓글: binbin cui 2016년 8월 6일
I was using the imrotate to rotate an image B = imrotate( image,20) and the image was rotated. After certain manipulations, I wanted to make it back to its original image, so I used C = imrotate(B,-20). But I find the size of image C is changed, which is bigger than original image. And the original image lies in the center of image C .Does anyone know how to ensure the size of the image exactly same as the original image after the twice rotation?
  댓글 수: 1
binbin cui
binbin cui 2016년 8월 6일
In fact, I wanna get the exact original image after rotation.

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2016년 8월 6일
When it rotates, it enlarges the canvas. You'll have to store the original size so that you can crop it after a round trip rotation. Like if it was 1000 rows, then after rotation it was 1200 rows tall, then when you rotate it back you need to crop off 100 rows from the top and bottom. Same for the right and left sides. I'm sure you can handle the math. Let me know if you can't.
  댓글 수: 4
binbin cui
binbin cui 2016년 8월 6일
I do crop it. But the result is totally out of expectation. I find most of the original image is removed after the crop.
binbin cui
binbin cui 2016년 8월 6일
I get it, thank you very much. I should directly retrieve the target matrix from the matrix C but not to crop it.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by