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  -------------------------------------------------------------------------*/
35 #ifndef vtkPPCAStatistics_h
36 #define vtkPPCAStatistics_h
37 
38 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
39 #include "vtkPCAStatistics.h"
40 
42 
43 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPPCAStatistics : public vtkPCAStatistics
44 {
45 public:
47  void PrintSelf(ostream& os, vtkIndent indent);
48  static vtkPPCAStatistics* New();
49 
51 
53  virtual void SetController(vtkMultiProcessController*);
54  vtkGetObjectMacro(Controller, vtkMultiProcessController);
56 
57 
58 protected:
61 
63 
64  // Execute the parallel calculations required by the Learn option.
65  virtual void Learn( vtkTable* inData,
66  vtkTable* inParameters,
67  vtkMultiBlockDataSet* outMeta );
68 
70 
72  virtual void Test( vtkTable*,
74  vtkTable* );
76 
78 
79 private:
80  vtkPPCAStatistics(const vtkPPCAStatistics&); // Not implemented.
81  void operator=(const vtkPPCAStatistics&); // Not implemented.
82 };
83 
84 #endif
virtual vtkOrderStatistics * CreateOrderStatisticsInstance()
A class for parallel principal component analysis.
A class for univariate order statistics.
static vtkPCAStatistics * New()
virtual void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *)
vtkMultiProcessController * Controller
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual void PrintSelf(ostream &os, vtkIndent indent)
virtual void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *)
A class for multivariate principal component analysis.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:67
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.