Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkPointCloudScoringFilter.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #ifndef mitkPointCloudScoringFilter_h_Included
18 #define mitkPointCloudScoringFilter_h_Included
19 
22 
23 namespace mitk
24 {
25  class UnstructuredGrid;
26 
38  {
39  public:
40  typedef std::pair<int, double> ScorePair;
41 
43 
44  itkFactorylessNewMacro(Self)
45 
48  itkGetMacro(NumberOfOutpPoints, int)
49 
52  itkGetMacro(FilteredScores, std::vector<ScorePair>)
53 
54  protected :
55 
57  virtual void GenerateData() override;
58 
60  virtual void GenerateOutputInformation() override;
61 
64 
66  virtual ~PointCloudScoringFilter();
67 
68  private:
70  std::vector<ScorePair> m_FilteredScores;
71 
73  int m_NumberOfOutpPoints;
74  };
75 }
76 #endif
Superclass of all classes generating some kind of mitk::BaseData.
STL namespace.
DataCollection - Class to facilitate loading/accessing structured data.
#define MITKSURFACEINTERPOLATION_EXPORT
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:44
Scores an UnstructuredGrid as good as one matches to the other.