필터 지우기
필터 지우기

How to rotate a line about center point??

조회 수: 3 (최근 30일)
Heera Bhadrecha
Heera Bhadrecha 2014년 10월 20일
댓글: Image Analyst 2014년 10월 22일
I have an image i want to rotate line between two point by center point .
  댓글 수: 1
Image Analyst
Image Analyst 2014년 10월 22일
It's not clear to me. Post an image (screenshot) showing the image, the "center point" and the line. Then explain if you just want to "rotate line" (rotate the line itself and not the image) like you said, or if you want to rotate the image . And what does "between two point" mean? Do you mean a line segment where the line is defined just as going between one point and another point rather than off to infinity in both directions? And that line rotates around the "center point"? And is that "center point" the center point of the whole image, or the center point of the line segment?

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

채택된 답변

Mohammad Abouali
Mohammad Abouali 2014년 10월 21일
Let's say you want to rotate around and arbitrary points designated by (ro,co);
Here how you can do it:
% Top left corner as center of rotation
ro=1;
co=1;
I=imread('peppers.png');
[r,c,nB]=size(I);
I2=zeros(2*r,2*c,nB,'like', I);
I2(r-ro+1:2*r-ro,c-co+1:2*c-co,:)=I;
Irotated=imrotate(I2,45);

추가 답변 (2개)

michael scheinfeild
michael scheinfeild 2014년 10월 20일
use imrotate or calculate the affine transform
  댓글 수: 1
Heera Bhadrecha
Heera Bhadrecha 2014년 10월 21일
but i have a center point ,left top and right top point.i want to line rotate a line between left top and right top.

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


Heera Bhadrecha
Heera Bhadrecha 2014년 10월 21일
Thanks How to calculate the angle between two line when one line is rotating???
  댓글 수: 1
Mohammad Abouali
Mohammad Abouali 2014년 10월 22일
편집: Mohammad Abouali 2014년 10월 22일
use dot (inner) product

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

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by