Estimates a 2D affine transformation from two point sets. More...
#include <EstimateAffineTransformation2D.hpp>
Public Types | |
typedef super::VectorXT | VectorXT |
Column vector of arbitrary size with value type T. | |
typedef super::MatrixXT | MatrixXT |
Matrix of arbitrary size with value type T. | |
typedef super::Vector2T | Vector2T |
2D column vector with value type T. | |
typedef super::Vector3T | Vector3T |
3D column vector with value type T. | |
typedef super::Vector4T | Vector4T |
4D column vector with value type T. | |
typedef super::RowVector2T | RowVector2T |
2D row vector with value type T. | |
typedef super::RowVector3T | RowVector3T |
3D row vector with value type T. | |
typedef super::Matrix2T | Matrix2T |
2 x 2 matrix with value type T. | |
typedef super::Matrix3T | Matrix3T |
3 x 3 matrix with value type T. | |
typedef super::Matrix4T | Matrix4T |
4 x 4 matrix with value type T. | |
typedef super::ArrayXT | ArrayXT |
General-purpose array of arbitrary size with value type T. | |
enum | Error { NOT_ENOUGH_POINTS, UNEQUAL_NUMBER_OF_POINTS, UNKNOWN_ERROR, WRONG_POINT_SIZE } |
Public Member Functions | |
EstimateAffineTransformation2D () | |
Constructs a new instance of this class. | |
EstimateAffineTransformation2D (const std::vector< Coordinate< T > > &source_points, const std::vector< Coordinate< T > > &target_points) | |
Constructs a new instance of this class. | |
EstimateAffineTransformation2D (const std::vector< Vector2T, Eigen::aligned_allocator< Vector2T > > &source_points, const std::vector< Vector2T, Eigen::aligned_allocator< Vector2T > > &target_points) | |
Constructs a new instance of this class. | |
EstimateAffineTransformation2D (const std::vector< Vector3T > &source_points, const std::vector< Vector3T > &target_points) | |
Constructs a new instance of this class. | |
virtual | ~EstimateAffineTransformation2D () |
Deletes the instance. | |
virtual void | compute () |
Computes the transformation estimation. | |
Matrix2T | getLinearTransformationMatrix () const |
Vector2T | getTranslationVector () const |
virtual value_type | getRMS () const |
Returns the root mean square (RMS) error of the estimated transformation. | |
virtual const Matrix3T & | getTransformationMatrix () const |
void | setSourcePoints (const std::vector< Coordinate< T > > &) |
Sets the source points. | |
void | setSourcePoints (const std::vector< Vector2T, Eigen::aligned_allocator< Vector2T > > &) |
Sets the source points. | |
void | setSourcePoints (const std::vector< Vector3T > &) |
Sets the source points. | |
void | setTargetPoints (const std::vector< Coordinate< T > > &) |
Sets the target points. | |
void | setTargetPoints (const std::vector< Vector2T, Eigen::aligned_allocator< Vector2T > > &) |
Sets the target points. | |
void | setTargetPoints (const std::vector< Vector3T > &) |
Sets the target points. | |
Public Attributes | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef T | value_type |
Internally used value type (should be a floating point type). | |
Protected Attributes | |
MatrixXT | m_source_points |
MatrixXT | m_target_points |
Matrix3T | m_transformation_matrix |
Estimates a 2D affine transformation from two point sets.
This class estimates a 2D affine transformation between two point sets in terms of least squares. The point sets must have the same cardinality, and the points must correspond to each other. There must be at least three corresponding point pairs.
The algorithm estimates a transformation matrix as shown below:
\[ \begin{pmatrix} y_1 \\ y_2 \\ 1 \end{pmatrix} = \begin{pmatrix} a_{11} & a_{12} & b_1 \\ a_{21} & a_{22} & b_2 \\ 0 & 0 & 1 \end{pmatrix} \begin{pmatrix} x_1 \\ x_2 \\ 1 \end{pmatrix} \qquad \qquad \text{or} \qquad \qquad y = Ax + b \]
The source points are the set of all \( x \) and the target points are the set of all \( y \).
Here is an more elaborate example to see, how to use the class:
#include <iostream> #include <vector> #include <TRTK/Coordinate.hpp> #include <TRTK/Transform2D.hpp> #include <TRTK/EstimateAffineTransformation2D.hpp> using std::cout; using std::endl; using std::vector; using namespace TRTK; int main() { // Construct an affine transformation. Transform2D<double> transform; transform.a12() = 1; transform.a13() = 3; transform.a21() = 2; // Construct two sets with source and target points, respectively. vector<Coordinate<double> > source_points; vector<Coordinate<double> > target_points; Coordinate<double> source_point1( 1, 2); Coordinate<double> source_point2( 3, -2); Coordinate<double> source_point3(-1, 1); Coordinate<double> source_point4( 2, 0); source_points.push_back(source_point1); source_points.push_back(source_point2); source_points.push_back(source_point3); source_points.push_back(source_point4); Coordinate<double> target_point1 = transform * source_point1; Coordinate<double> target_point2 = transform * source_point2; Coordinate<double> target_point3 = transform * source_point3; Coordinate<double> target_point4 = transform * source_point4; target_points.push_back(target_point1); target_points.push_back(target_point2); target_points.push_back(target_point3); target_points.push_back(target_point4); // Perform the transformation estimation. EstimateAffineTransformation2D<double> EstimateAffineTransformation2D(source_points, target_points); EstimateAffineTransformation2D.compute(); // Display the results. cout.precision(4); cout << std::fixed; cout << "Original transformation matrix:" << endl << endl << transform.getTransformationMatrix() << endl << endl; cout << "Estimated transformation matrix:" << endl << endl << EstimateAffineTransformation2D.getTransformationMatrix() << endl << endl; // Example of how to use the result. Transform2D<double> transform2 = EstimateAffineTransformation2D.getTransformationMatrix(); cout << "Source point 1: " << source_point1 << endl << "Target point 1: " << target_point1 << endl << "Target point 1: " << transform2 * source_point1 << endl; return 0; }
Output:
Original transformation matrix: 1.0000 1.0000 3.0000 2.0000 1.0000 0.0000 0.0000 0.0000 1.0000 Estimated transformation matrix: 1.0000 1.0000 3.0000 2.0000 1.0000 0.0000 0.0000 0.0000 1.0000 Source point 1: (1.0000, 2.0000) Target point 1: (6.0000, 4.0000) Target point 1: (6.0000, 4.0000)
Definition at line 186 of file EstimateAffineTransformation2D.hpp.
enum TRTK::EstimateTransformation::Error [inherited] |
Definition at line 62 of file EstimateTransformation.hpp.
TRTK::EstimateAffineTransformation2D< T >::EstimateAffineTransformation2D | ( | ) |
Constructs a new instance of this class.
T | scalar type of the coordinates |
Definition at line 240 of file EstimateAffineTransformation2D.hpp.
TRTK::EstimateAffineTransformation2D< T >::EstimateAffineTransformation2D | ( | const std::vector< Coordinate< T > > & | source_points, |
const std::vector< Coordinate< T > > & | target_points | ||
) |
Constructs a new instance of this class.
T | scalar type of the coordinates |
[in] | source_points | The points can either be plain 2D or 3D homogeneous coordinates. |
[in] | target_points | The points can either be plain 2D or 3D homogeneous coordinates. |
No transformation estimation is done. To do so, please call compute().
ErrorObj | If there are any coordinates other than 2D or 3D coordinates, an error object is thrown and its error code is set to WRONG_POINT_SIZE . |
Definition at line 267 of file EstimateAffineTransformation2D.hpp.
TRTK::EstimateAffineTransformation2D< T >::EstimateAffineTransformation2D | ( | const std::vector< Vector2T, Eigen::aligned_allocator< Vector2T > > & | source_points, |
const std::vector< Vector2T, Eigen::aligned_allocator< Vector2T > > & | target_points | ||
) |
Constructs a new instance of this class.
T | scalar type of the coordinates |
[in] | source_points | 2D coordinates. |
[in] | target_points | 2D coordinates. |
No transformation estimation is done. To do so, please call compute().
Definition at line 289 of file EstimateAffineTransformation2D.hpp.
TRTK::EstimateAffineTransformation2D< T >::EstimateAffineTransformation2D | ( | const std::vector< Vector3T > & | source_points, |
const std::vector< Vector3T > & | target_points | ||
) |
Constructs a new instance of this class.
T | scalar type of the coordinates |
[in] | source_points | 3D homogeneous coordinates. |
[in] | target_points | 3D homogeneous coordinates. |
No transformation estimation is done. To do so, please call compute().
Definition at line 311 of file EstimateAffineTransformation2D.hpp.
TRTK::EstimateAffineTransformation2D< T >::~EstimateAffineTransformation2D | ( | ) | [virtual] |
Deletes the instance.
T | scalar type of the coordinates |
Definition at line 325 of file EstimateAffineTransformation2D.hpp.
void TRTK::EstimateAffineTransformation2D< T >::compute | ( | ) | [virtual] |
Computes the transformation estimation.
T | scalar type of the coordinates |
The transformation estimation uses a least square scheme. For a more detailed explanation of the algorithm, please have a look at the source code. (A link should be below.)
The direction of the transformation is from the source points to the target points: \( p_{target} = \cal{T} \; \{ p_{source} \} \).
ErrorObj | If the point sets do not have the same cardinality, an error object is thrown and its error code is set to UNEQUAL_NUMBER_OF_POINTS . |
ErrorObj | If there are not enough points (at least three) to perform the transformation estimation, an error object is thrown and its error code is set to NOT_ENOUGH_POINTS . |
Implements TRTK::EstimateTransformation2D< T >.
Definition at line 351 of file EstimateAffineTransformation2D.hpp.
EstimateAffineTransformation2D< T >::Matrix2T TRTK::EstimateAffineTransformation2D< T >::getLinearTransformationMatrix | ( | ) | const |
T | scalar type of the coordinates |
Definition at line 457 of file EstimateAffineTransformation2D.hpp.
EstimateTransformation2D< T >::value_type TRTK::EstimateTransformation2D< T >::getRMS | ( | ) | const [virtual, inherited] |
Returns the root mean square (RMS) error of the estimated transformation.
T | scalar type of the coordinates |
It is assumed, that the computation was done before.
The value type T
must provide a function T sqrt(T value)
which yields the square root of value
.
ErrorObj | If the point sets do not have the same cardinality, an error object is thrown and its error code is set to UNEQUAL_NUMBER_OF_POINTS . |
Implements TRTK::EstimateTransformation< T >.
Definition at line 148 of file EstimateTransformation2D.hpp.
const EstimateTransformation2D< T >::Matrix3T & TRTK::EstimateTransformation2D< T >::getTransformationMatrix | ( | ) | const [virtual, inherited] |
T | scalar type of the coordinates |
Definition at line 194 of file EstimateTransformation2D.hpp.
EstimateAffineTransformation2D< T >::Vector2T TRTK::EstimateAffineTransformation2D< T >::getTranslationVector | ( | ) | const |
T | scalar type of the coordinates |
Definition at line 471 of file EstimateAffineTransformation2D.hpp.
void TRTK::EstimateTransformation2D< T >::setSourcePoints | ( | const std::vector< Vector2T, Eigen::aligned_allocator< Vector2T > > & | source_points ) | [inherited] |
Sets the source points.
T | scalar type of the coordinates |
[in] | source_points | 2D coordinates. |
Definition at line 246 of file EstimateTransformation2D.hpp.
void TRTK::EstimateTransformation2D< T >::setSourcePoints | ( | const std::vector< Vector3T > & | source_points ) | [inherited] |
Sets the source points.
T | scalar type of the coordinates |
[in] | source_points | 3D homogeneous coordinates. |
Definition at line 264 of file EstimateTransformation2D.hpp.
void TRTK::EstimateTransformation2D< T >::setSourcePoints | ( | const std::vector< Coordinate< T > > & | source_points ) | [inherited] |
Sets the source points.
T | scalar type of the coordinates |
[in] | source_points | The points can either be plain 2D or 3D homogeneous coordinates. |
ErrorObj | If there are any coordinates other than 2D or 3D coordinates, an error object is thrown and its error code is set to WRONG_POINT_SIZE . |
Definition at line 214 of file EstimateTransformation2D.hpp.
void TRTK::EstimateTransformation2D< T >::setTargetPoints | ( | const std::vector< Coordinate< T > > & | target_points ) | [inherited] |
Sets the target points.
T | scalar type of the coordinates |
[in] | target_points | The points can either be plain 2D or 3D homogeneous coordinates. |
ErrorObj | If there are any coordinates other than 2D or 3D coordinates, an error object is thrown and its error code is set to WRONG_POINT_SIZE . |
Definition at line 292 of file EstimateTransformation2D.hpp.
void TRTK::EstimateTransformation2D< T >::setTargetPoints | ( | const std::vector< Vector2T, Eigen::aligned_allocator< Vector2T > > & | target_points ) | [inherited] |
Sets the target points.
T | scalar type of the coordinates |
[in] | target_points | 2D coordinates. |
Definition at line 324 of file EstimateTransformation2D.hpp.
void TRTK::EstimateTransformation2D< T >::setTargetPoints | ( | const std::vector< Vector3T > & | target_points ) | [inherited] |
Sets the target points.
T | scalar type of the coordinates |
[in] | target_points | 3D homogeneous coordinates. |
Definition at line 342 of file EstimateTransformation2D.hpp.
Documentation generated by Doxygen