how can I do ROTATION OPERATION for both row and column

 Accepted Answer

More Answers (2)

Image Analyst
Image Analyst on 27 Nov 2018
Edited: Image Analyst on 27 Nov 2018
Really depends on what "rotation" means to you.
  1. Try imtranslate() if you want to shift the image by some number of rows and columns, with no wrap around of edges to the opposite side.
  2. Try circshift() if you want to shift the image with edges wrapping around.
  3. Try imrotate if you want to spin the image around it's center.

Tags

Community Treasure Hunt

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

Start Hunting!