フィルターのクリア

How do i generate a rotation matrix iteratively.

1 回表示 (過去 30 日間)
Stewart Tan
Stewart Tan 2019 年 9 月 11 日
コメント済み: Walter Roberson 2019 年 9 月 11 日
I have two matrices containing coordinates:
example1 = [1 3;
4 5;
2 3;
6 17];
example2 = [1 4;
6 2;
8 9;
10 11];
and I'm implementing the RANSAC algorithm to remove outlier coordinates. To do that, I will need to include a factor of whether a not one coordinate in example1 is either a rotation, scaling or translation which result in the coordinate in example2. (1 3 -> 1 4, 4 5 -> 6 2 etc..) Hence, I will need to have a rotation matrix, scaling and translation matrix to be built iteratively within the RANSAC algorithm.
For now, I'll just keep it simple by just using a rotation matrix.
How do i generate a rotation matrix [cos θ -sin θ; sin θ cos θ] if i do not have anything else other than the two coordinate matrices above?
Edit: sorry for the confusion but the goal is to "estimate" the transformation matrix in every N iteration. The following shows:
Snip20190911_1.png

採用された回答

Walter Roberson
Walter Roberson 2019 年 9 月 11 日
example1 = [1 3;
4 5;
2 3;
6 17];
example2 = [1 4;
6 2;
8 9;
10 11];
syms theta
RM = [cos(theta) -sin(theta); sin(theta) cos(theta)];
residue = simplify( sum(sum((example2 - (RM * example1.').').^2)) );
best_theta = vpasolve(diff(residue,theta));
It is also possible to code it as a numeric minimization of residue over a bounded range, without using the symbolic toolbox.
  3 件のコメント
Walter Roberson
Walter Roberson 2019 年 9 月 11 日
Your original goal was restricted to rotation matrix, and my code finds the rotation matrix that produces the least squared error of rotation between the given sets of coordinates.
Walter Roberson
Walter Roberson 2019 年 9 月 11 日
I would suggest that Bruno's answer is probably better for your purposes.

サインインしてコメントする。

その他の回答 (1 件)

Bruno Luong
Bruno Luong 2019 年 9 月 11 日
編集済み: Bruno Luong 2019 年 9 月 11 日
You can use this implementation by Matt J using the Horn's method. It do for you the scaling and translation as well.

カテゴリ

Help Center および File ExchangeMATLAB Support Package for USB Webcams についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by