how to rotate Image around its diameter?
3 views (last 30 days)
Show older comments
i want to rotate image around its diameter (horizontal or vertical )not its center (clockwise ........)
with specific angel
1 Comment
Answers (2)
Bjorn Gustavsson
on 11 Jun 2013
It sounds like you want to do something like:
ImOut1 = fliplr(ImIn);
ImOut2 = flipud(ImIn);
ImOut3 = flipdim(ImIn,dim);
HTH
Image Analyst
on 11 Jun 2013
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 Comments
Bjorn Gustavsson
on 12 Jun 2013
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.
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!