how to rotate Image around its diameter?
2 次查看(过去 30 天)
显示 更早的评论
i want to rotate image around its diameter (horizontal or vertical )not its center (clockwise ........)
with specific angel
1 个评论
回答(2 个)
Bjorn Gustavsson
2013-6-11
It sounds like you want to do something like:
ImOut1 = fliplr(ImIn);
ImOut2 = flipud(ImIn);
ImOut3 = flipdim(ImIn,dim);
HTH
Image Analyst
2013-6-11
I don't understand what you want. Please create something, say in Photoshop or whatever and upload somewhere, such as http://snag.gy. In the meantime, what is wrong with imrotate()?
5 个评论
Bjorn Gustavsson
2013-6-12
That's right, from one ordinary image it is not possible to determine if the object is small and close to the camera, or a larger-scaled object further away. To make your 3-d scene, that is the information you need.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision with Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!