/vol/vipdata/irtk/image++/include/irtkConvolutionWithPadding_3D.h

00001 /*=========================================================================
00002 
00003   Library   : Image Registration Toolkit (IRTK)
00004   Module    : $Id: irtkConvolutionWithPadding_3D.h 2 2008-12-23 12:40:14Z dr $
00005   Copyright : Imperial College, Department of Computing
00006               Visual Information Processing (VIP), 2008 onwards
00007   Date      : $Date: 2008-12-23 12:40:14 +0000 (Tue, 23 Dec 2008) $
00008   Version   : $Revision: 2 $
00009   Changes   : $Author: dr $
00010 
00011 =========================================================================*/
00012 
00013 #ifndef _IRTKCONVOLUTIONWITHPADDING_3D_H
00014 
00015 #define _IRTKCONVOLUTIONWITHPADDING_3D_H
00016 
00025 template <class VoxelType> class irtkConvolutionWithPadding_3D : public irtkConvolution_3D<VoxelType>
00026 {
00027 
00028 protected:
00029 
00034   VoxelType _padding;
00035 
00037   virtual const char *NameOfClass();
00038 
00046   virtual double Run(int, int, int, int);
00047 
00048 public:
00049 
00051   irtkConvolutionWithPadding_3D(VoxelType, Bool = False);
00052 
00054   void      PutPaddingValue(VoxelType);
00055 
00057   VoxelType GetPaddingValue();
00058 };
00059 
00060 #endif