Imaging/vtkImageMirrorPad.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00040 #ifndef __vtkImageMirrorPad_h
00041 #define __vtkImageMirrorPad_h
00042
00043
00044 #include "vtkImagePadFilter.h"
00045
00046 class VTK_IMAGING_EXPORT vtkImageMirrorPad : public vtkImagePadFilter
00047 {
00048 public:
00049 static vtkImageMirrorPad *New();
00050 vtkTypeRevisionMacro(vtkImageMirrorPad,vtkImagePadFilter);
00051
00052 protected:
00053 vtkImageMirrorPad() {};
00054 ~vtkImageMirrorPad() {};
00055
00056 void ComputeInputUpdateExtent(int inExt[6], int outExt[6]);
00057 void ThreadedExecute(vtkImageData *inData, vtkImageData *outRegion,
00058 int ext[6], int id);
00059 private:
00060 vtkImageMirrorPad(const vtkImageMirrorPad&);
00061 void operator=(const vtkImageMirrorPad&);
00062 };
00063
00064 #endif
00065
00066
00067