|
latest version v1.9 - last update 10 Apr 2010 |
|
This class defines a factory for homography estimator functors. More...
#include <ltiHomographyEstimatorFactory.h>


Public Member Functions | |
| homographyEstimatorFactory () | |
| virtual | ~homographyEstimatorFactory () |
| virtual const char * | getTypeName () const |
| virtual homographyEstimatorBase * | newInstance (const char *name) const |
| virtual homographyEstimatorBase * | newInstance (const std::string &name) const |
| virtual homographyEstimatorBase * | newInstance (eTransformEstimatorType &name) const |
This class defines a factory for homography estimator functors.
The applications should check if this functor returns a valid instance (not null pointer).
| lti::homographyEstimatorFactory::homographyEstimatorFactory | ( | ) |
Constructor.
| virtual lti::homographyEstimatorFactory::~homographyEstimatorFactory | ( | ) | [virtual] |
Destructor.
| virtual const char* lti::homographyEstimatorFactory::getTypeName | ( | ) | const [virtual] |
returns the name of this type ("homographyEstimatorFactory")
Reimplemented from lti::object.
| virtual homographyEstimatorBase* lti::homographyEstimatorFactory::newInstance | ( | eTransformEstimatorType & | name | ) | const [virtual] |
Creates a new instance of the class whose name is given as parameter, if this class is known to the factory.
Otherwise, it returns null.
| name | type of the to-be instantiated class. |
| virtual homographyEstimatorBase* lti::homographyEstimatorFactory::newInstance | ( | const std::string & | name | ) | const [inline, virtual] |
Creates a new instance of the class whose name is given as parameter, if this class is known to the factory.
Otherwise, it returns null.
| name | name of the to-be instantiated class. |
References newInstance().
| virtual homographyEstimatorBase* lti::homographyEstimatorFactory::newInstance | ( | const char * | name | ) | const [virtual] |
Creates a new instance of the class whose name is given as parameter, if this class is known to the factory.
Otherwise, it returns null.
| name | name of the to-be instantiated class. |
Referenced by newInstance().