-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Construct affine transforms from point-pairs #87
Conversation
Given a set of point pairs `from => to`, compute the affine transformation that best reproduces the observed mapping. Closes #30
Codecov Report
@@ Coverage Diff @@
## master #87 +/- ##
==========================================
+ Coverage 63.90% 66.54% +2.63%
==========================================
Files 4 4
Lines 266 275 +9
==========================================
+ Hits 170 183 +13
+ Misses 96 92 -4
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
Given two sets of points, this constructs rigid (rotation + translation) and similarity (rotation, translation, and scaling) transformations that align the first set to the second in the least-squares sense. Similar to #87, but with constraints on the nature of the transformation. Co-authored by: Tom McGrath <[email protected]>
Given two sets of points, this constructs rigid (rotation + translation) and similarity (rotation, translation, and scaling) transformations that align the first set to the second in the least-squares sense. Similar to #87, but with constraints on the nature of the transformation. Co-authored by: Tom McGrath <[email protected]>
Given a set of point pairs
from => to
, compute the affinetransformation that best reproduces the observed mapping.
Closes #30