필터 지우기
필터 지우기

How to use maketform to get affine transform?

조회 수: 6 (최근 30일)
t
t 2014년 3월 14일
답변: Alex Taylor 2014년 3월 14일
I'm unsure from the documentation how to use maketform.
I'm taking two points each from two images and using them to make a similarity matrix A which I then pass into maketform to get an affine transform:
maketform('affine', inv(A)');
What is A supposed to be and what format is it meant to be in? If I pass in a 2x2 matrix I get an error:
Error using maketform>validate_matrix (line 320)
The final column of A must consist of zeroes, except for a one in the last row.

답변 (2개)

Dishant Arora
Dishant Arora 2014년 3월 14일
A is transformation matrix that is used for scaling, rotating and other spatial transformations. See this blog Spatial transformations: Affine
  댓글 수: 1
t
t 2014년 3월 14일
Ah thanks. Is it possible to find the transformation matrix if you have the original point and the transformed point?

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


Alex Taylor
Alex Taylor 2014년 3월 14일
1) Why not just use fitgeotrans to construct your transformation from a set of matched control points?
2) What is inv(A)' ?
Unlike many books, MATLAB uses the convention that an affine transformation is of the form:
T = [A11 A12 0;...
A21 A22 0;...
Tx Ty 1];
Are you possibly using a transposed definition?
3) maketform is not the recommended way of doing this anymore. Try using affine2d/affine3d and imwarp instead of maketform and imtransform.

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by