Documentation for vtkThresholdPoints

vtkThresholdPoints - extracts points whose scalar value satisfies threshold criterion

Super Class: vtkDataSetToPolyDataFilter

Description:

vtkThresholdPoints is a filter that extracts points from a dataset that satisfy a threshold criterion. The criterion can take three forms: 1) greater than a particular value; 2) less than a particular value; or 3) between a particular value. The output of the filter is polygonal data.

 

See Also:

vtkThreshold

 

Methods:

void vtkThresholdPoints ()
static vtkThresholdPoints *New ()
const char *GetClassName ()
void PrintSelf (unknown & ,vtkIndent )
void ThresholdByLower (float )
void ThresholdByUpper (float )
void ThresholdBetween (float ,float )
float GetUpperThreshold ()
float GetLowerThreshold ()
void Execute ()
int Lower (float )
int Upper (float )
int Between (float )

 

Detailed Method Descriptions:

Criterion is cells whose scalars are less than lower threshold.

void ThresholdByLower (float )

Criterion is cells whose scalars are less than upper threshold.

void ThresholdByUpper (float )

Criterion is cells whose scalars are between lower and upper thresholds.

void ThresholdBetween (float ,float )

Get the upper and lower thresholds.

float GetUpperThreshold ()
float GetLowerThreshold ()