Azzera filtri
Azzera filtri

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

11 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Image Analyst
Image Analyst il 6 Ago 2016
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 Commenti
binbin cui
binbin cui il 6 Ago 2016
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 il 6 Ago 2016
I get it, thank you very much. I should directly retrieve the target matrix from the matrix C but not to crop it.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by