00001 /*========================================================================= 00002 00003 Program: 3DMed 00004 Date: $Date: 2014-02-25 18:30:00 +0800 $ 00005 Version: $Version: 4.6.0 $ 00006 Copyright: MIPG, Institute of Automation, Chinese Academy of Sciences 00007 00008 =========================================================================*/ 00009 00010 00011 #ifndef __mitkLinearInterpolateFilter_h 00012 #define __mitkLinearInterpolateFilter_h 00013 00014 #include "mitkInterpolateFilter.h" 00015 00030 class MITK_REGISTRATION_API mitkLinearInterpolateFilter : public mitkInterpolateFilter 00031 { 00032 public: 00033 MITK_TYPE(mitkLinearInterpolateFilter, mitkInterpolateFilter) 00034 virtual void PrintSelf(ostream &os); 00035 00039 mitkLinearInterpolateFilter(); 00040 00041 protected: 00042 virtual ~mitkLinearInterpolateFilter(); 00043 virtual void _interpolation(const ScalarParameterType* index, ScalarPixelType* value); 00044 virtual void _interpolation(const ScalarParameterType* index, ScalarPixelType& value); 00045 00046 int indexGrid[3]; 00047 ScalarPixelType neighbors[8]; 00048 00049 private: 00050 mitkLinearInterpolateFilter(const mitkLinearInterpolateFilter&); 00051 void operator = (const mitkLinearInterpolateFilter&); 00052 00053 }; 00054 00055 00056 //#define DEFINED_mitkLinearInterpolateFilter 00057 00058 00059 00060 #endif 00061