필터 지우기
필터 지우기

How to rotate a line using Matlab?

조회 수: 28 (최근 30일)
Makrim
Makrim 2015년 5월 16일
편집: Habtamu Tesfaw 2021년 3월 12일
Suppose I have an image I and a line h1. Using Matlab, I can draw the line (or segment) like this (in red) :
h1 = plot( [l1 l1],[20 100], 'r');
Now I want to rotate the image I with an angle of 45°. So I used imrotate like this:
IR = imrotate(I,45);
Now, I want to rotate the line, how to do that using Matlab ?
PS: I found the function rotate. I am trying this, but it is not working !
rotate(h1,[1 1],45);

채택된 답변

Image Analyst
Image Analyst 2015년 5월 16일
imrotate() rotates an entire image, not a line you created with line() or plot(). You need to take your points and multiply by the rotation matrix - you know, the sin and cos thing you learned in your linear algebra class in college. Then call line() or plot() again with the rotated coordinates.
  댓글 수: 1
Makrim
Makrim 2015년 5월 16일
it worked for the two points of the line ... thank you

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Habtamu Tesfaw
Habtamu Tesfaw 2021년 3월 12일
편집: Habtamu Tesfaw 2021년 3월 12일
here is a simple package that can do the job '
https://www.mathworks.com/matlabcentral/fileexchange/88748-lrotate?s_tid=srchtitle

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by