![]() Re: Computational Complexity of Affine Transformat...
| Stefan Offerman... | 11-12-2007 |
If you were Registered and logged in, you could reply and use other advanced thread options
Hi All,
Does anyone know how to compute the computational complexity of an
affine transformation operation?
Regards,
Nathan
Does anyone know how to compute the computational complexity of an
affine transformation operation?
Regards,
Nathan
nathanwh71@gmail.com schrieb:
Do you mean projective transformations? Or the simpler similarity
transformations? Both are affin, the projective is more complex. The
similarity transformation uses an equal scale factor for all dimensions.
The similarity transformation uses less parameters. In 2D there are 4
parameters (the a_x's):
X = a_1 * x - a_2 * y + a_3
Y = a_2 * x + a_1 * y + a_4
(I hope I got the minus on the right place...)
X and Y are the transformed coordinate values, x and y are the observed
coordinates.
Now to the projected formulas:
X = a_1 * x + a_2 * y + a_3
Y = a_4 * x + a_5 * y + a_6
Now we have six parameters. In the 3D-case you have nine parameters for
the projective transformation and seven for similarity, called
"Helmert-Transformation".
Does this help you?
Best regards, Stefan
--
student of geoinformatic
ifgi - institute for geoinformatics
www.ifgi.de
Do you mean projective transformations? Or the simpler similarity
transformations? Both are affin, the projective is more complex. The
similarity transformation uses an equal scale factor for all dimensions.
The similarity transformation uses less parameters. In 2D there are 4
parameters (the a_x's):
X = a_1 * x - a_2 * y + a_3
Y = a_2 * x + a_1 * y + a_4
(I hope I got the minus on the right place...)
X and Y are the transformed coordinate values, x and y are the observed
coordinates.
Now to the projected formulas:
X = a_1 * x + a_2 * y + a_3
Y = a_4 * x + a_5 * y + a_6
Now we have six parameters. In the 3D-case you have nine parameters for
the projective transformation and seven for similarity, called
"Helmert-Transformation".
Does this help you?
Best regards, Stefan
--
student of geoinformatic
ifgi - institute for geoinformatics
www.ifgi.de
- CGAL 3.9 Released, Computational Geometry Algorithms Library
- Geographic Information Systems (GIS)
- 2011-09-28
- CGAL 3.8 Released, Computational Geometry Algorithms Library
- Geographic Information Systems (GIS)
- 2011-04-19
- CGAL 3.7 Released, Computational Geometry Algorithms Library
- Geographic Information Systems (GIS)
- 2010-10-18
- freeware program for windows to create Transverse Mercator and Lambert azimutal projections
- Geographic Information Systems (GIS)
- 2009-02-08
- CGAL 3.5 Released, Computational Geometry Algorithms Library
- Geographic Information Systems (GIS)
- 2009-10-05
- CGAL 3.3.1 Released, Computational Geometry Algorithms Library
- Geographic Information Systems (GIS)
- 2007-09-05



> affine transformation operation?