00001 /* 00002 // 00003 // Copyright 1997-2009 Torsten Rohlfing 00004 // Copyright 2004-2009 SRI International 00005 // 00006 // This file is part of the Computational Morphometry Toolkit. 00007 // 00008 // http://www.nitrc.org/projects/cmtk/ 00009 // 00010 // The Computational Morphometry Toolkit is free software: you can 00011 // redistribute it and/or modify it under the terms of the GNU General Public 00012 // License as published by the Free Software Foundation, either version 3 of 00013 // the License, or (at your option) any later version. 00014 // 00015 // The Computational Morphometry Toolkit is distributed in the hope that it 00016 // will be useful, but WITHOUT ANY WARRANTY; without even the implied 00017 // warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 // GNU General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU General Public License along 00021 // with the Computational Morphometry Toolkit. If not, see 00022 // <http://www.gnu.org/licenses/>. 00023 // 00024 // $Revision: 1397 $ 00025 // 00026 // $LastChangedDate: 2010-04-01 11:30:36 -0700 (Thu, 01 Apr 2010) $ 00027 // 00028 // $LastChangedBy: torstenrohlfing $ 00029 // 00030 */ 00031 00032 #ifndef __cmtkSincInterpolator_h_included_ 00033 #define __cmtkSincInterpolator_h_included_ 00034 00035 #include <cmtkconfig.h> 00036 00037 #ifdef HAVE_IEEEFP_H 00038 # include <ieeefp.h> 00039 #endif 00040 00041 namespace 00042 cmtk 00043 { 00044 00047 namespace 00048 Interpolators 00049 { 00050 00052 template<int NRadius=5> 00053 class HammingSinc 00054 { 00055 public: 00057 typedef HammingSinc<NRadius> Self; 00058 00060 static const int RegionSizeLeftRight = NRadius; 00061 00063 static Types::Coordinate GetWeight( const int i, const Types::Coordinate x ) 00064 { 00065 const Types::Coordinate piDiff = M_PI * (x - i); 00066 const Types::Coordinate result = 0.54 + 0.46 * cos( piDiff * Self::InternalFactor ) * sin( piDiff ) / piDiff; 00067 return finite( result ) ? result : 1; 00068 } 00069 00070 private: 00072 static const Types::Coordinate InternalFactor; 00073 }; 00074 00075 template<int NRadius> const Types::Coordinate HammingSinc<NRadius>::InternalFactor = 1.0 / HammingSinc<NRadius>::RegionSizeLeftRight; 00076 00078 template<int NRadius=5> 00079 class CosineSinc 00080 { 00081 public: 00083 typedef CosineSinc<NRadius> Self; 00084 00086 static const int RegionSizeLeftRight = NRadius; 00087 00089 static Types::Coordinate GetWeight( const int i, const Types::Coordinate x ) 00090 { 00091 const Types::Coordinate piDiff = M_PI * (x - i); 00092 const Types::Coordinate result = cos( piDiff * Self::InternalFactor ) * sin( piDiff ) / piDiff; 00093 return finite( result ) ? result : 1; 00094 } 00095 00096 private: 00098 static const Types::Coordinate InternalFactor; 00099 }; 00100 00101 template<int NRadius> const Types::Coordinate CosineSinc<NRadius>::InternalFactor = 1.0 / (2*CosineSinc<NRadius>::RegionSizeLeftRight); 00102 00103 } // namespace Interpolators 00104 00106 00107 } // namespace cmtk 00108 00109 #endif