dox/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
00029
#ifndef __vtkImageMirrorPad_h
00030
#define __vtkImageMirrorPad_h
00031
00032
00033
#include "vtkImagePadFilter.h"
00034
00035 class VTK_IMAGING_EXPORT vtkImageMirrorPad :
public vtkImagePadFilter
00036 {
00037
public:
00038
static vtkImageMirrorPad *
New();
00039 vtkTypeRevisionMacro(vtkImageMirrorPad,
vtkImagePadFilter);
00040
00041
protected:
00042 vtkImageMirrorPad() {};
00043 ~vtkImageMirrorPad() {};
00044
00045
void ComputeInputUpdateExtent(
int inExt[6],
int outExt[6]);
00046
void ThreadedExecute(
vtkImageData *inData,
vtkImageData *outRegion,
00047
int ext[6],
int id);
00048
private:
00049 vtkImageMirrorPad(
const vtkImageMirrorPad&);
00050
void operator=(
const vtkImageMirrorPad&);
00051 };
00052
00053
#endif
00054
00055
00056