Page principale   Hiérarchie des classes   Liste des composants   Liste des fichiers   Composants   Déclarations  

function_library.h

Aller à la documentation de ce fichier.
00001 /*
00002   PDElib "PDE filters for black and white images"
00003   Copyright (C) 2001 Sylvain Paris
00004   
00005   This program is free software; you can redistribute it and/or
00006   modify it under the terms of the GNU General Public License
00007   as published by the Free Software Foundation; either version 2
00008   of the License, or (at your option) any later version.
00009   
00010   This program is distributed in the hope that it will be useful,
00011   but WITHOUT ANY WARRANTY; without even the implied warranty of
00012   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013   GNU General Public License for more details.
00014   
00015   You should have received a copy of the GNU General Public License
00016   along with this program; if not, write to the Free Software
00017   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00018 
00019   Author : Sylvain Paris
00020            sp.gpl@netcourrier.com
00021            8, rue des acacias
00022            77 360 Vaires
00023            FRANCE
00024 */
00025 
00026 #ifndef __FUNCTION_LIBRARY__
00027 #define __FUNCTION_LIBRARY__
00028 
00039 #include <function.h>
00040 
00041 
00042 /*
00043   #######################
00044   # class Ramp_function #
00045   #######################
00046  */
00047 
00048 
00050 
00054 class Ramp_function
00055   :public unary_function<float,float>{
00056 
00057 private:
00059   float lower_bound;
00061   float higher_bound;
00064   float inv_delta;
00066   float low_value;
00068   float high_value;
00069   
00070 public:
00071   Ramp_function(const float low,
00072                 const float high,
00073                 const float low_val,
00074                 const float high_val);
00075   
00076   inline float operator()(const float x) const;
00077 };
00078 
00079 
00080 /*
00081   ############################# 
00082   # class Inv_square_function #
00083   #############################
00084  */
00085 
00086 
00088 class Inv_square_function
00089   :public unary_function<float,float>{
00090 
00091 private:
00093   float alpha;
00094   
00095 public:
00098   Inv_square_function(const float cut = 1);
00099   
00100   inline float operator()(const float x) const;
00101 };
00102 
00103 
00104 #include "function_library.cc"
00105 
00106 #endif
00107 
00108 
00109 
00110 

Généré le Mon Mar 19 22:47:37 2001 pour PDElib par doxygen1.2.5 écrit par Dimitri van Heesch, © 1997-2001