latest version v1.9 - last update 10 Apr 2010 |
00001 /* 00002 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 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 .......: ltiMultScalar.h 00027 * authors ....: Thomas Rusert 00028 * organization: LTI, RWTH Aachen 00029 * creation ...: 20.04.99 00030 * revisions ..: $Id: ltiMultScalar.h,v 1.4 2007/01/10 02:26:22 alvarado Exp $ 00031 */ 00032 00033 #ifndef _LTI_MULTSCALAR_H_ 00034 #define _LTI_MULTSCALAR_H_ 00035 00036 #include "ltiScalarFunctor.h" 00037 00038 namespace lti { 00039 /** 00040 * Multiply by Scalar functor class. 00041 * 00042 * apply() multiplies each element of the mathObj by the given scalar value. 00043 */ 00044 template<class T> 00045 class multiplyScalar : public scalarFunctor<T> { 00046 public: 00047 00048 typedef typename scalarFunctor<T>::parameters parameters; 00049 00050 /// default constructor, sets the scalar value to 0 00051 multiplyScalar() {}; 00052 00053 /// constructor, sets the scalar value. 00054 multiplyScalar(const T theValue) : scalarFunctor<T>(theValue) {}; 00055 00056 /// constructor, sets the parameters, i.e. the scalar value. 00057 multiplyScalar(const parameters& theParams) 00058 :scalarFunctor<T>(theParams) {}; 00059 00060 /// destructor 00061 virtual ~multiplyScalar(); 00062 00063 /** onPlace version of apply. 00064 applies the functor's function to 'theObject'. */ 00065 virtual vector<T>& apply(vector<T>& theObject) const; 00066 00067 /** onCopy version of apply. 00068 applies the functor's function to the copy of 'theObject', 00069 'newObject'. */ 00070 virtual vector<T>& apply(const vector<T>& theObject, 00071 vector<T>& newObject) const; 00072 00073 /** onPlace version of apply. 00074 applies the functor's function to 'theObject'. */ 00075 virtual matrix<T>& apply(matrix<T>& theObject) const; 00076 00077 /** onCopy version of apply. 00078 applies the functor's function to the copy of 'theObject', 00079 'newObject'. */ 00080 virtual matrix<T>& apply(const matrix<T>& theObject, 00081 matrix<T>& newObject) const; 00082 00083 /// returns a pointer to a clone of the functor. 00084 virtual functor* clone() const; 00085 00086 /// returns the name of this type 00087 virtual const char* getTypeName() const; 00088 }; 00089 } 00090 00091 #include "ltiMultScalar_template.h" 00092 00093 #endif