Section: Visualization Toolkit Infovis Classes
The image data input can come either as a multiple vtkImageData via the repeatable INPUT_HISTOGRAM_IMAGE_DATA port, or as a single vtkMultiBlockDataSet containing vtkImageData objects as blocks. One or the other must be set, not both (or neither). The output can be retrieved as a set of row ids in a vtkSelection or as a vtkTable containing the actual outlier row data.
To create an instance of class vtkComputeHistogram2DOutliers, simply invoke its constructor as follows
obj = vtkComputeHistogram2DOutliers
obj
is an instance of the vtkComputeHistogram2DOutliers class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkComputeHistogram2DOutliers = obj.NewInstance ()
vtkComputeHistogram2DOutliers = obj.SafeDownCast (vtkObject o)
obj.SetPreferredNumberOfOutliers (int )
int = obj.GetPreferredNumberOfOutliers ()
vtkTable = obj.GetOutputTable ()
obj.SetInputTableConnection (vtkAlgorithmOutput cxn)
- Set the input histogram data as a (repeatable) vtkImageData
obj.SetInputHistogramImageDataConnection (vtkAlgorithmOutput cxn)
- Set the input histogram data as a vtkMultiBlockData set
containing multiple vtkImageData objects.
obj.SetInputHistogramMultiBlockConnection (vtkAlgorithmOutput cxn)