vtkThreshold - extracts cells where scalar value in cell satisfies threshold criterion
Super Class: vtkDataSetToUnstructuredGridFilter
Description:
vtkThreshold is a filter that extracts cells from any dataset type that satisfy a threshold criterion. A cell satisfies the criterion if the scalar value of (every or any) point satisfies the criterion. The criterion can take three forms: 1) greater than a particular value; 2) less than a particular value; or 3) between two values. The output of this filter is an unstructured grid. Note that scalar values are available from the point and cell attribute data. By default, point data is used to obtain scalars, but you can control this behavior. See the AttributeMode ivar below.
See Also:
Methods:
void vtkThreshold () | |
static vtkThreshold *New () | |
const char *GetClassName () | |
void PrintSelf (unknown & ,vtkIndent ) | |
void ThresholdByLower (float ) | |
void ThresholdByUpper (float ) | |
void ThresholdBetween (float ,float ) | |
float GetUpperThreshold () | |
float GetLowerThreshold () | |
void SetAttributeMode (int ) | |
int GetAttributeMode () | |
void SetAttributeModeToDefault () | |
void SetAttributeModeToUsePointData () | |
void SetAttributeModeToUseCellData () | |
char *GetAttributeModeAsString () | |
void SetAllScalars (int ) | |
int GetAllScalars () | |
void AllScalarsOn () | |
void AllScalarsOff () | |
void Execute () | |
int Lower (float ) | |
int Upper (float ) | |
int Between (float ) |
Detailed Method Descriptions:
void ThresholdByLower (float ) |
void ThresholdByUpper (float ) |
void ThresholdBetween (float ,float ) |
float GetUpperThreshold () | |
float GetLowerThreshold () |
void SetAttributeMode (int ) | |
int GetAttributeMode () | |
void SetAttributeModeToDefault () | |
void SetAttributeModeToUsePointData () | |
void SetAttributeModeToUseCellData () | |
char *GetAttributeModeAsString () |
void SetAllScalars (int ) | |
int GetAllScalars () | |
void AllScalarsOn () | |
void AllScalarsOff () |