VTK
vtkPPCAStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPPCAStatistics.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2011 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19  -------------------------------------------------------------------------*/
36 #ifndef vtkPPCAStatistics_h
37 #define vtkPPCAStatistics_h
38 
39 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
40 #include "vtkPCAStatistics.h"
41 
43 
44 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPPCAStatistics : public vtkPCAStatistics
45 {
46 public:
48  void PrintSelf(ostream& os, vtkIndent indent);
50 
52 
57  vtkGetObjectMacro(Controller, vtkMultiProcessController);
59 
60 
61 protected:
64 
66 
67  // Execute the parallel calculations required by the Learn option.
68  virtual void Learn( vtkTable* inData,
69  vtkTable* inParameters,
70  vtkMultiBlockDataSet* outMeta );
71 
76  virtual void Test( vtkTable*,
78  vtkTable* );
79 
81 
82 private:
83  vtkPPCAStatistics(const vtkPPCAStatistics&) VTK_DELETE_FUNCTION;
84  void operator=(const vtkPPCAStatistics&) VTK_DELETE_FUNCTION;
85 };
86 
87 #endif
vtkPPCAStatistics::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkPCAStatistics
A class for multivariate principal component analysis.
Definition: vtkPCAStatistics.h:66
vtkPPCAStatistics::CreateOrderStatisticsInstance
virtual vtkOrderStatistics * CreateOrderStatisticsInstance()
Return a new vtkOrderStatistics instance.
vtkTable
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:69
vtkPPCAStatistics::Learn
virtual void Learn(vtkTable *inData, vtkTable *inParameters, vtkMultiBlockDataSet *outMeta)
Execute the calculations required by the Learn option, given some input Data.
vtkPPCAStatistics::SetController
virtual void SetController(vtkMultiProcessController *)
Get/Set the multiprocess controller.
vtkOrderStatistics
A class for univariate order statistics.
Definition: vtkOrderStatistics.h:61
vtkMultiBlockDataSet
Composite dataset that organizes datasets into blocks.
Definition: vtkMultiBlockDataSet.h:52
vtkPPCAStatistics::Controller
vtkMultiProcessController * Controller
Definition: vtkPPCAStatistics.h:65
vtkPPCAStatistics::Test
virtual void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *)
Execute the calculations required by the Test option.
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:83
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkPPCAStatistics::New
static vtkPPCAStatistics * New()
vtkPCAStatistics.h
vtkPPCAStatistics::vtkPPCAStatistics
vtkPPCAStatistics()
vtkPPCAStatistics::~vtkPPCAStatistics
~vtkPPCAStatistics()
vtkPPCAStatistics
A class for parallel principal component analysis.
Definition: vtkPPCAStatistics.h:45