VTK
|
extract outlier rows from a vtkTable based on input 2D histograms, in parallel. More...
#include <vtkPComputeHistogram2DOutliers.h>
Public Types | |
typedef vtkComputeHistogram2DOutliers | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkPComputeHistogram2DOutliers * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetController (vtkMultiProcessController *) |
virtual vtkMultiProcessController * | GetController () |
Static Public Member Functions | |
static vtkPComputeHistogram2DOutliers * | New () |
static int | IsTypeOf (const char *type) |
static vtkPComputeHistogram2DOutliers * | SafeDownCast (vtkObjectBase *o) |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkPComputeHistogram2DOutliers () | |
~vtkPComputeHistogram2DOutliers () | |
virtual int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
Protected Attributes | |
vtkMultiProcessController * | Controller |
extract outlier rows from a vtkTable based on input 2D histograms, in parallel.
This class does exactly the same this as vtkComputeHistogram2DOutliers, but does it in a multi-process environment. After each node computes their own local outliers, class does an AllGather that distributes the outliers to every node. This could probably just be a Gather onto the root node instead.
After this operation, the row selection will only contain local row ids, since I'm not sure how to deal with distributed ids.
Definition at line 50 of file vtkPComputeHistogram2DOutliers.h.
Reimplemented from vtkComputeHistogram2DOutliers.
Definition at line 54 of file vtkPComputeHistogram2DOutliers.h.
vtkPComputeHistogram2DOutliers::vtkPComputeHistogram2DOutliers | ( | ) | [protected] |
vtkPComputeHistogram2DOutliers::~vtkPComputeHistogram2DOutliers | ( | ) | [protected] |
static vtkPComputeHistogram2DOutliers* vtkPComputeHistogram2DOutliers::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkComputeHistogram2DOutliers.
static int vtkPComputeHistogram2DOutliers::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkComputeHistogram2DOutliers.
virtual int vtkPComputeHistogram2DOutliers::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkComputeHistogram2DOutliers.
static vtkPComputeHistogram2DOutliers* vtkPComputeHistogram2DOutliers::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkComputeHistogram2DOutliers.
virtual vtkObjectBase* vtkPComputeHistogram2DOutliers::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkComputeHistogram2DOutliers.
Reimplemented from vtkComputeHistogram2DOutliers.
void vtkPComputeHistogram2DOutliers::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkComputeHistogram2DOutliers.
virtual void vtkPComputeHistogram2DOutliers::SetController | ( | vtkMultiProcessController * | ) | [virtual] |
virtual vtkMultiProcessController* vtkPComputeHistogram2DOutliers::GetController | ( | ) | [virtual] |
virtual int vtkPComputeHistogram2DOutliers::RequestData | ( | vtkInformation * | request, |
vtkInformationVector ** | inputVector, | ||
vtkInformationVector * | outputVector | ||
) | [protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented from vtkComputeHistogram2DOutliers.
Definition at line 68 of file vtkPComputeHistogram2DOutliers.h.