LTI-Lib latest version v1.9 - last update 10 Apr 2010

ltiTransformEstimatorFactory.h

00001 /*
00002  * Copyright (C) 2004, 2005, 2006
00003  * Lehrstuhl fuer Technische Informatik, RWTH-Aachen, Germany
00004  *
00005  * This file is part of the LTI-Computer Vision Library (LTI-Lib)
00006  *
00007  * The LTI-Lib is free software; you can redistribute it and/or
00008  * modify it under the terms of the GNU Lesser General Public License (LGPL)
00009  * as published by the Free Software Foundation; either version 2.1 of
00010  * the License, or (at your option) any later version.
00011  *
00012  * The LTI-Lib is distributed in the hope that it will be
00013  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
00014  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU Lesser General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU Lesser General Public
00018  * License along with the LTI-Lib; see the file LICENSE.  If
00019  * not, write to the Free Software Foundation, Inc., 59 Temple Place -
00020  * Suite 330, Boston, MA 02111-1307, USA.
00021  */
00022 
00023 
00024 /*----------------------------------------------------------------
00025  * project ....: LTI Digital Image/Signal Processing Library
00026  * file .......: ltiTransformEstimatorFactory.h
00027  * authors ....: Claudia Goenner
00028  * organization: LTI, RWTH Aachen
00029  * creation ...: 18.4.2004
00030  * revisions ..: $Id: ltiTransformEstimatorFactory.h,v 1.3 2006/02/08 11:57:48 ltilib Exp $
00031  */
00032 
00033 #ifndef _LTI_TRANSFORM_ESTIMATOR_FACTORY
00034 #define _LTI_TRANSFORM_ESTIMATOR_FACTORY
00035 
00036 #include "ltiTransformEstimatorType.h"
00037 #include "ltiTransformEstimator.h"
00038 #include "ltiObjectFactory.h"
00039 
00040 namespace lti {
00041 
00042   /**
00043    * This class defines a factory for transform estimator functors.
00044    *
00045    * The applications should check if this functor
00046    * returns a valid instance (not null pointer).
00047    */
00048   class transformEstimatorFactory: public object {
00049 
00050   public:
00051     /**
00052      * Constructor.
00053      */
00054     transformEstimatorFactory();
00055 
00056     /**
00057      * Destructor.
00058      */
00059     virtual ~transformEstimatorFactory();
00060 
00061     /**
00062      * returns the name of this type ("transformEstimatorFactory")
00063      */
00064     virtual const char* getTypeName() const;
00065 
00066     /**
00067      * Creates a new instance of the class whose name is given
00068      * as parameter, if this class is known to the factory.
00069      * Otherwise, it returns null.
00070      * @param name name of the to-be instantiated class.
00071      * @return a new instance.
00072      */
00073     virtual transformEstimator* newInstance(const char *name) const;
00074 
00075     /**
00076      * Creates a new instance of the class whose name is given
00077      * as parameter, if this class is known to the factory.
00078      * Otherwise, it returns null.
00079      * @param name name of the to-be instantiated class.
00080      * @return a new instance.
00081      */
00082     virtual transformEstimator* newInstance(const std::string& name) const {
00083       return newInstance(name.c_str());
00084     }
00085 
00086     /**
00087      * Creates a new instance of the class whose name is given
00088      * as parameter, if this class is known to the factory.
00089      * Otherwise, it returns null.
00090      * @param name type of the to-be instantiated class.
00091      * @return a new instance.
00092      */
00093     virtual transformEstimator* 
00094       newInstance(eTransformEstimatorType name) const;
00095 
00096   private:
00097 
00098     /**
00099      * transform estimators used in the factory
00100      */
00101     static const transformEstimator *const  transformEstimators[];
00102 
00103     /**
00104      * the real object factory
00105      */
00106     static objectFactory<transformEstimator> factory;
00107 
00108   };
00109 
00110 
00111 }
00112 
00113 #endif

Generated on Sat Apr 10 15:26:18 2010 for LTI-Lib by Doxygen 1.6.1