VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkImageThreshold.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00026 #ifndef __vtkImageThreshold_h 00027 #define __vtkImageThreshold_h 00028 00029 00030 #include "vtkImagingCoreModule.h" // For export macro 00031 #include "vtkThreadedImageAlgorithm.h" 00032 00033 class VTKIMAGINGCORE_EXPORT vtkImageThreshold : public vtkThreadedImageAlgorithm 00034 { 00035 public: 00036 static vtkImageThreshold *New(); 00037 vtkTypeMacro(vtkImageThreshold,vtkThreadedImageAlgorithm); 00038 void PrintSelf(ostream& os, vtkIndent indent); 00039 00041 void ThresholdByUpper(double thresh); 00042 00044 void ThresholdByLower(double thresh); 00045 00047 void ThresholdBetween(double lower, double upper); 00048 00050 00051 vtkSetMacro(ReplaceIn, int); 00052 vtkGetMacro(ReplaceIn, int); 00053 vtkBooleanMacro(ReplaceIn, int); 00055 00057 00058 void SetInValue(double val); 00059 vtkGetMacro(InValue, double); 00061 00063 00064 vtkSetMacro(ReplaceOut, int); 00065 vtkGetMacro(ReplaceOut, int); 00066 vtkBooleanMacro(ReplaceOut, int); 00068 00070 00071 void SetOutValue(double val); 00072 vtkGetMacro(OutValue, double); 00074 00076 00077 vtkGetMacro(UpperThreshold, double); 00078 vtkGetMacro(LowerThreshold, double); 00080 00082 00083 vtkSetMacro(OutputScalarType, int); 00084 vtkGetMacro(OutputScalarType, int); 00085 void SetOutputScalarTypeToDouble() 00086 {this->SetOutputScalarType(VTK_DOUBLE);} 00087 void SetOutputScalarTypeToFloat() 00088 {this->SetOutputScalarType(VTK_FLOAT);} 00089 void SetOutputScalarTypeToLong() 00090 {this->SetOutputScalarType(VTK_LONG);} 00091 void SetOutputScalarTypeToUnsignedLong() 00092 {this->SetOutputScalarType(VTK_UNSIGNED_LONG);}; 00093 void SetOutputScalarTypeToInt() 00094 {this->SetOutputScalarType(VTK_INT);} 00095 void SetOutputScalarTypeToUnsignedInt() 00096 {this->SetOutputScalarType(VTK_UNSIGNED_INT);} 00097 void SetOutputScalarTypeToShort() 00098 {this->SetOutputScalarType(VTK_SHORT);} 00099 void SetOutputScalarTypeToUnsignedShort() 00100 {this->SetOutputScalarType(VTK_UNSIGNED_SHORT);} 00101 void SetOutputScalarTypeToChar() 00102 {this->SetOutputScalarType(VTK_CHAR);} 00103 void SetOutputScalarTypeToSignedChar() 00104 {this->SetOutputScalarType(VTK_SIGNED_CHAR);} 00105 void SetOutputScalarTypeToUnsignedChar() 00106 {this->SetOutputScalarType(VTK_UNSIGNED_CHAR);} 00108 00109 protected: 00110 vtkImageThreshold(); 00111 ~vtkImageThreshold() {}; 00112 00113 double UpperThreshold; 00114 double LowerThreshold; 00115 int ReplaceIn; 00116 double InValue; 00117 int ReplaceOut; 00118 double OutValue; 00119 00120 int OutputScalarType; 00121 00122 virtual int RequestInformation (vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00123 00124 void ThreadedRequestData(vtkInformation *request, 00125 vtkInformationVector **inputVector, 00126 vtkInformationVector *outputVector, 00127 vtkImageData ***inData, vtkImageData **outData, 00128 int extent[6], int id); 00129 00130 private: 00131 vtkImageThreshold(const vtkImageThreshold&); // Not implemented. 00132 void operator=(const vtkImageThreshold&); // Not implemented. 00133 }; 00134 00135 #endif 00136 00137 00138