how to rotate Image around its diameter?
조회 수: 1 (최근 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!