2D Affine Geometric transformation factory. More...
#include <AffineGTFactory.h>
  
 Public Types | |
| typedef FactoryDictionary < AbstractFactory < GeometricTransformation, std::string, TKEYCOMPARE > , std::string, TKEYCOMPARE >  | dictionary_type | 
| typedef AbstractFactory | factory_type | 
Public Member Functions | |
| AffineGTFactory () | |
| const std::string & | getKey () const | 
| It returns the factory key associated to the concreate factory.  More... | |
| ~AffineGTFactory () | |
Static Public Member Functions | |
| static void | finalize () | 
| Finalize the factory.  More... | |
| static const factory_type * | find (const std::string &factoryKey) | 
| static dictionary_type & | getDictionary () | 
| It returns a reference to the internal dictionary of concrete factories.  More... | |
| static void | initialize () | 
| Initialize the factory.  More... | |
| static GeometricTransformation * | make (const std::string &factoryKey) | 
| It creates an object with the appropriated factory.  More... | |
Protected Member Functions | |
| GeometricTransformation * | build () | 
| Concrete factories (derived from this one) must implement this method in order to create objects.  More... | |
Protected Attributes | |
| std::string | m_factoryKey | 
| The key that identifies the concrete factory: it will be used for unregistering the factory during destruction.  More... | |
Static Protected Attributes | |
| static GTFactory * | m_initializedFactoryPtr | 
2D Affine Geometric transformation factory.
Definition at line 42 of file AffineGTFactory.h.
      
  | 
  inherited | 
Definition at line 73 of file AbstractFactory.h.
      
  | 
  inherited | 
Definition at line 77 of file AbstractFactory.h.
| te::gm::AffineGTFactory::AffineGTFactory | ( | ) | 
Definition at line 32 of file AffineGTFactory.cpp.
| te::gm::AffineGTFactory::~AffineGTFactory | ( | ) | 
Definition at line 37 of file AffineGTFactory.cpp.
      
  | 
  protectedvirtual | 
Concrete factories (derived from this one) must implement this method in order to create objects.
Implements te::common::AbstractFactory< GeometricTransformation, std::string >.
Definition at line 53 of file AffineGTFactory.cpp.
      
  | 
  static | 
Finalize the factory.
Definition at line 47 of file AffineGTFactory.cpp.
Referenced by te::gm::Module::finalize().
      
  | 
  staticinherited | 
Referenced by te::rp::TiePointsLocator::initialize().
      
  | 
  staticinherited | 
It returns a reference to the internal dictionary of concrete factories.
The dictionary is a singleton.
Referenced by te::qt::widgets::MosaicWizardPage::fillMosaicTypes(), te::qt::widgets::TiePointsLocatorAdvancedDialog::showEvent(), and te::qt::widgets::TiePointLocatorWidget::startAdvancedOptions().
      
  | 
  inherited | 
It returns the factory key associated to the concreate factory.
      
  | 
  static | 
Initialize the factory.
Definition at line 41 of file AffineGTFactory.cpp.
Referenced by te::gm::Module::initialize().
      
  | 
  staticinherited | 
It creates an object with the appropriated factory.
| factoryKey | A key that identifies the factory used to build the object. | 
| Exception | If the concrete factory is not specified or the object can not be built for any reason this methiod may throws an exception. | 
Referenced by te::gm::GTFilter::applyRansac(), te::gm::GTFilter::applyRansacThreadEntry(), te::rp::GeometricRefining::convert(), te::rp::GeoMosaic::execute(), te::rp::Register::execute(), te::rp::TiePointsMosaic::execute(), te::rp::TiePointsLocator::execute(), te::rp::GeometricRefining::execute(), te::rp::Register::initialize(), te::qt::widgets::TiePointsLocatorDialog::tiePointsTableUpdate(), te::qt::widgets::TiePointLocatorWidget::tiePointsTableUpdate(), te::qt::widgets::TiePointsLocatorDialog::transformationInfoUpdate(), and te::qt::widgets::TiePointLocatorWidget::transformationInfoUpdate().
      
  | 
  protectedinherited | 
The key that identifies the concrete factory: it will be used for unregistering the factory during destruction.
Definition at line 136 of file AbstractFactory.h.
      
  | 
  staticprotected | 
Definition at line 58 of file AffineGTFactory.h.