00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00061 #ifndef __vtkImageMask_h
00062 #define __vtkImageMask_h
00063
00064
00065 #include "vtkImageTwoInputFilter.h"
00066
00067 class VTK_EXPORT vtkImageMask : public vtkImageTwoInputFilter
00068 {
00069 public:
00070 static vtkImageMask *New();
00071 vtkTypeMacro(vtkImageMask,vtkImageTwoInputFilter);
00072 void PrintSelf(ostream& os, vtkIndent indent);
00073
00075 void SetMaskedOutputValue(int num, float *v);
00076 void SetMaskedOutputValue(float v) {this->SetMaskedOutputValue(1, &v);}
00077 void SetMaskedOutputValue(float v1, float v2)
00078 {float v[2]; v[0]=v1; v[1]=v2; this->SetMaskedOutputValue(2, v);}
00079 void SetMaskedOutputValue(float v1, float v2, float v3)
00080 {float v[3]; v[0]=v1; v[1]=v2; v[2]=v3; this->SetMaskedOutputValue(3, v);}
00081 float *GetMaskedOutputValue() {return this->MaskedOutputValue;}
00082 int GetMaskedOutputValueLength() {return this->MaskedOutputValueLength;}
00083
00085 void SetImageInput(vtkImageData *in) {this->SetInput1(in);}
00086
00088 void SetMaskInput(vtkImageData *in) {this->SetInput2(in);}
00089
00094 vtkSetMacro(NotMask,int);
00095 vtkGetMacro(NotMask,int);
00096 vtkBooleanMacro(NotMask, int);
00097
00098 protected:
00099 vtkImageMask();
00100 ~vtkImageMask();
00101 vtkImageMask(const vtkImageMask&) {};
00102 void operator=(const vtkImageMask&) {};
00103
00104 float *MaskedOutputValue;
00105 int MaskedOutputValueLength;
00106 int NotMask;
00107
00108 void ExecuteInformation(vtkImageData **inDatas, vtkImageData *outData);
00109 void ExecuteInformation(){this->vtkImageTwoInputFilter::ExecuteInformation();};
00110
00111 void ThreadedExecute(vtkImageData **inDatas, vtkImageData *outData,
00112 int extent[6], int id);
00113 };
00114
00115 #endif
00116
00117
00118