Affine transformation that takes a given, known ellipse and maps it to a circle with diameter equal to the major axis.
Show older comments
I am looking for the affine transformation that takes a given, known ellipse and maps it to a circle with diameter equal to the major axis. I plan to use this transformation matrix to map the image's original coordinates to new ones, thereby stretching the ellipse into a circle. Some assistance would be greatly appreciated.
Accepted Answer
More Answers (1)
Richard Brown
on 11 Apr 2012
Not difficult to do, but a bit fiddly. Exactly how difficult depends on the form of your known ellipse equation. I'm going to assume that your ellipse is in the following parametric form, you may need to adapt from there:
x = x0 + Q * [a * cos(theta); b * sin(theta)]
where x and x0 are 2-vectors, with a > b > 0, and where Q is a rotation matrix:
Q = [cos(alpha), -sin(alpha); sin(alpha) cos(alpha)]
First, change variables to y = Q' * (x - x0). then
y = [a * cos(theta); b * sin(theta)];
Lets say you want to your transformation to produce yp in the shifted, rotated coordinates, and xp in the original coordinates. Then, your change of variables will be as follows:
yp = diag([1, a/b]) * y
= S * y
and hence
xp = Q*yp + x0
= Q*S*Q'*(x - x0) + x0
= Q*S*Q'*x + (eye(2) - Q*S*Q')*x0
which is your required affine transformation. If your ellipse is in a different form, then you'll need to convert to parametric form first.
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!