how can I do ROTATION OPERATION for both row and column
조회 수: 2 (최근 30일)
이전 댓글 표시
I want to make shifting for row and column. how can I do that?
채택된 답변
추가 답변 (2개)
Image Analyst
2018년 11월 27일
편집: Image Analyst
2018년 11월 27일
Really depends on what "rotation" means to you.
- 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.
- Try circshift() if you want to shift the image with edges wrapping around.
- Try imrotate if you want to spin the image around it's center.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!