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!