Image Rotation

2 views (last 30 days)
ahlem
ahlem on 7 Jun 2012
I want to rotate an image through the rotation matrix whose center of rotation is variable.

Accepted Answer

Sean de Wolski
Sean de Wolski on 7 Jun 2012
doc maketform
doc imtransform
Or you could pad the image so that the center of rotation is the center, use imrotate and then unpad as necessary.

More Answers (1)

ahlem
ahlem on 7 Jun 2012
imrotate actually enlarges the dimensions of the image that is why I want to multiply the rotation matrix "R = [cos (angle)-sin (angle), sin (angle) cos (angle)]" with the image I
  2 Comments
Sean de Wolski
Sean de Wolski on 7 Jun 2012
IMROTATE _can_ do expand the dimensions, yes. It also has a 'crop' option that maintains the original dimensions.
ahlem
ahlem on 8 Jun 2012
Thank you sean .
Actually, my work is to implement generalized Radon whose projections are rectangles. I do the rotation of each rectangle then I go through the main image to find the peak.
that's why the Imrotate don't work with!!!

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!