last update 20 Sep 2009 |
#include <cvrAffineTransformation2D.h>
Public Member Functions | |
parameters () | |
parameters (const parameters &other) | |
~parameters () | |
parameters & | copy (const parameters &other) |
parameters & | operator= (const parameters &other) |
virtual const std::string & | name () const |
virtual parameters * | clone () const |
virtual parameters * | newInstance () const |
virtual bool | write (ioHandler &handler, const bool complete=true) const |
virtual bool | read (ioHandler &handler, const bool complete=true) |
Public Attributes | |
fpoint | translation |
float | a00 |
float | a01 |
float | a10 |
float | a11 |
linearLeastSquares::parameters | llsParameters |
cvr::affineTransformation2D::affineTransformation2D::parameters::parameters | ( | ) |
cvr::affineTransformation2D::affineTransformation2D::parameters::parameters | ( | const parameters & | other | ) |
Copy constructor.
other | the parameters object to be copied |
Reimplemented from cvr::functor::functor::parameters.
cvr::affineTransformation2D::affineTransformation2D::parameters::~parameters | ( | ) | [virtual] |
virtual parameters* cvr::affineTransformation2D::affineTransformation2D::parameters::clone | ( | ) | const [virtual] |
parameters& cvr::affineTransformation2D::affineTransformation2D::parameters::copy | ( | const parameters & | other | ) |
Copy the contents of a parameters object.
other | the parameters object to be copied |
virtual const std::string& cvr::affineTransformation2D::affineTransformation2D::parameters::name | ( | ) | const [virtual] |
virtual parameters* cvr::affineTransformation2D::affineTransformation2D::parameters::newInstance | ( | ) | const [virtual] |
Returns a pointer to a new instance of the parameters.
Implements cvr::functor::functor::parameters.
parameters& cvr::affineTransformation2D::affineTransformation2D::parameters::operator= | ( | const parameters & | other | ) |
Copy the contents of a parameters object.
other | the parameters object to be copied |
virtual bool cvr::affineTransformation2D::affineTransformation2D::parameters::read | ( | ioHandler & | handler, | |
const bool | complete = true | |||
) | [virtual] |
Read the parameters from the given ioHandler.
handler | the ioHandler to be used | |
complete | if true (the default) the enclosing begin/end will be also written, otherwise only the data block will be written. |
Reimplemented from cvr::parametersManager::parametersManager::parameters.
virtual bool cvr::affineTransformation2D::affineTransformation2D::parameters::write | ( | ioHandler & | handler, | |
const bool | complete = true | |||
) | const [virtual] |
Write the parameters in the given ioHandler.
handler | the ioHandler to be used | |
complete | if true (the default) the enclosing begin/end will be also written, otherwise only the data block will be written. |
Reimplemented from cvr::parametersManager::parametersManager::parameters.
float cvr::affineTransformation2D::affineTransformation2D::parameters::a00 |
First element of the 2x2 submatrix.
Default value: 1
float cvr::affineTransformation2D::affineTransformation2D::parameters::a01 |
Second element of the 2x2 submatrix.
Default value: 0
float cvr::affineTransformation2D::affineTransformation2D::parameters::a10 |
Third element of the 2x2 submatrix.
Default value: 0
float cvr::affineTransformation2D::affineTransformation2D::parameters::a11 |
Fourth element of the 2x2 submatrix.
Default value: 1
linearLeastSquares::parameters cvr::affineTransformation2D::affineTransformation2D::parameters::llsParameters |
Parameters used in the linearLeastSquares functor for the estimation tasks.
Default value: default
fpoint cvr::affineTransformation2D::affineTransformation2D::parameters::translation |
Magnitude of the translation in x and y directions.
Default value: 0