Thresholds table rows.
More...
#include <vtkThresholdTable.h>
Inherits vtkTableAlgorithm.
Thresholds table rows.
vtkThresholdTable uses minimum and/or maximum values to threshold table rows based on the values in a particular column. The column to threshold is specified using SetInputArrayToProcess(0, ...).
- Examples:
- vtkThresholdTable (Examples)
- Tests:
- vtkThresholdTable (Tests)
Definition at line 42 of file vtkThresholdTable.h.
Enumerator |
---|
ACCEPT_LESS_THAN |
|
ACCEPT_GREATER_THAN |
|
ACCEPT_BETWEEN |
|
ACCEPT_OUTSIDE |
|
Definition at line 50 of file vtkThresholdTable.h.
vtkThresholdTable::vtkThresholdTable |
( |
| ) |
|
|
protected |
vtkThresholdTable::~vtkThresholdTable |
( |
| ) |
|
|
protected |
static int vtkThresholdTable::IsTypeOf |
( |
const char * |
type | ) |
|
|
static |
virtual int vtkThresholdTable::IsA |
( |
const char * |
type | ) |
|
|
virtual |
virtual vtkObjectBase* vtkThresholdTable::NewInstanceInternal |
( |
| ) |
const |
|
protectedvirtual |
void vtkThresholdTable::PrintSelf |
( |
ostream & |
os, |
|
|
vtkIndent |
indent |
|
) |
| |
virtual void vtkThresholdTable::SetMode |
( |
int |
| ) |
|
|
virtual |
The mode of the threshold filter. Options are: ACCEPT_LESS_THAN (0) accepts rows with values < MaxValue; ACCEPT_GREATER_THAN (1) accepts rows with values > MinValue; ACCEPT_BETWEEN (2) accepts rows with values > MinValue and < MaxValue; ACCEPT_OUTSIDE (3) accepts rows with values < MinValue or > MaxValue.
virtual int vtkThresholdTable::GetMode |
( |
| ) |
|
|
virtual |
The mode of the threshold filter. Options are: ACCEPT_LESS_THAN (0) accepts rows with values < MaxValue; ACCEPT_GREATER_THAN (1) accepts rows with values > MinValue; ACCEPT_BETWEEN (2) accepts rows with values > MinValue and < MaxValue; ACCEPT_OUTSIDE (3) accepts rows with values < MinValue or > MaxValue.
virtual void vtkThresholdTable::SetMinValue |
( |
vtkVariant |
v | ) |
|
|
inlinevirtual |
The minimum value for the threshold. This may be any data type stored in a vtkVariant.
Definition at line 71 of file vtkThresholdTable.h.
virtual vtkVariant vtkThresholdTable::GetMinValue |
( |
| ) |
|
|
inlinevirtual |
The minimum value for the threshold. This may be any data type stored in a vtkVariant.
Definition at line 76 of file vtkThresholdTable.h.
virtual void vtkThresholdTable::SetMaxValue |
( |
vtkVariant |
v | ) |
|
|
inlinevirtual |
The maximum value for the threshold. This may be any data type stored in a vtkVariant.
Definition at line 85 of file vtkThresholdTable.h.
virtual vtkVariant vtkThresholdTable::GetMaxValue |
( |
| ) |
|
|
inlinevirtual |
The maximum value for the threshold. This may be any data type stored in a vtkVariant.
Definition at line 90 of file vtkThresholdTable.h.
void vtkThresholdTable::ThresholdBetween |
( |
vtkVariant |
lower, |
|
|
vtkVariant |
upper |
|
) |
| |
Criterion is rows whose scalars are between lower and upper thresholds (inclusive of the end values).
void vtkThresholdTable::SetMinValue |
( |
double |
v | ) |
|
|
inline |
void vtkThresholdTable::SetMaxValue |
( |
double |
v | ) |
|
|
inline |
void vtkThresholdTable::ThresholdBetween |
( |
double |
lower, |
|
|
double |
upper |
|
) |
| |
|
inline |
Criterion is rows whose scalars are between lower and upper thresholds (inclusive of the end values).
Definition at line 119 of file vtkThresholdTable.h.
int vtkThresholdTable::RequestData |
( |
vtkInformation * |
, |
|
|
vtkInformationVector ** |
, |
|
|
vtkInformationVector * |
|
|
) |
| |
|
protected |
vtkVariant vtkThresholdTable::MinValue |
|
protected |
vtkVariant vtkThresholdTable::MaxValue |
|
protected |
int vtkThresholdTable::Mode |
|
protected |
The documentation for this class was generated from the following file: