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
00039
00063 #ifndef __vtkThreshold_h
00064 #define __vtkThreshold_h
00065
00066 #include "vtkDataSetToUnstructuredGridFilter.h"
00067
00068 #define VTK_ATTRIBUTE_MODE_DEFAULT 0
00069 #define VTK_ATTRIBUTE_MODE_USE_POINT_DATA 1
00070 #define VTK_ATTRIBUTE_MODE_USE_CELL_DATA 2
00071
00072 class VTK_EXPORT vtkThreshold : public vtkDataSetToUnstructuredGridFilter
00073 {
00074 public:
00075 static vtkThreshold *New();
00076 vtkTypeMacro(vtkThreshold,vtkDataSetToUnstructuredGridFilter);
00077 void PrintSelf(ostream& os, vtkIndent indent);
00078
00081 void ThresholdByLower(float lower);
00082
00085 void ThresholdByUpper(float upper);
00086
00089 void ThresholdBetween(float lower, float upper);
00090
00092 vtkGetMacro(UpperThreshold,float);
00093 vtkGetMacro(LowerThreshold,float);
00094
00101 vtkSetMacro(AttributeMode,int);
00102 vtkGetMacro(AttributeMode,int);
00103 void SetAttributeModeToDefault()
00104 {this->SetAttributeMode(VTK_ATTRIBUTE_MODE_DEFAULT);};
00105 void SetAttributeModeToUsePointData()
00106 {this->SetAttributeMode(VTK_ATTRIBUTE_MODE_USE_POINT_DATA);};
00107 void SetAttributeModeToUseCellData()
00108 {this->SetAttributeMode(VTK_ATTRIBUTE_MODE_USE_CELL_DATA);};
00109 const char *GetAttributeModeAsString();
00110
00115 vtkSetMacro(AllScalars,int);
00116 vtkGetMacro(AllScalars,int);
00117 vtkBooleanMacro(AllScalars,int);
00118
00119 protected:
00120 vtkThreshold();
00121 ~vtkThreshold() {};
00122 vtkThreshold(const vtkThreshold&) {};
00123 void operator=(const vtkThreshold&) {};
00124
00125
00126 void Execute();
00127
00128 int AllScalars;
00129 float LowerThreshold;
00130 float UpperThreshold;
00131 int AttributeMode;
00132
00133
00134 int (vtkThreshold::*ThresholdFunction)(float s);
00135
00136
00137 int Lower(float s) {return ( s <= this->LowerThreshold ? 1 : 0 );};
00138 int Upper(float s) {return ( s >= this->UpperThreshold ? 1 : 0 );};
00139 int Between(float s) {return ( s >= this->LowerThreshold ?
00140 ( s <= this->UpperThreshold ? 1 : 0 ) : 0 );};
00141 };
00142
00143 #endif
00144
00145