Rotate image about a specified pixel coordinate

11 ビュー (過去 30 日間)
Philip
Philip 2011 年 9 月 29 日
Does anyone know of a way to rotate an image about a specified pixel coordinate? If I have the pixel coordinates (50,55) for example, I would like the end result to be centred around (50,55)... So the centre pixel of the rotated image is equivalent to these coordinates.
I have tried imrotate, but cannot get it to rotate on a specified coordinate.

回答 (2 件)

Rick Rosson
Rick Rosson 2011 年 9 月 29 日
I think you can accomplish what you want by following a two-step process. First, rotate the image through the desired angle. I believe this will rotate the image about the origin. Then, translate the image by the desired amount in both directions.
HTH.
Rick
  1 件のコメント
Walter Roberson
Walter Roberson 2011 年 9 月 29 日
Shouldn't it be three-step? Translate the image so that (50,55) gets centered over (0,0), then do the rotation, and then translate back ?

サインインしてコメントする。


Julien GANCE
Julien GANCE 2012 年 1 月 20 日
I tried to use the imtransform function to do that but the part of the picture that is cropped during the first translation is lost so that when I translate back the picture, I get a black area on the final one. Do you have an idea on the function to use ?
Thanks
Julien
  1 件のコメント
Image Analyst
Image Analyst 2012 年 1 月 20 日
Of course. You're going to have to figure out how large you need to make your canvass (prior to rotation) if you don't want any part of your image to be cropped. In other words, use padarray() to put a large margin of black around your image before rotating it so that the "good" part of your image will always lie within the output image.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by