MedianPointData.h
1 /*
2  * Medical Image Registration ToolKit (MIRTK)
3  *
4  * Copyright 2016 Imperial College London
5  * Copyright 2016 Andreas Schuh
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 
20 #ifndef MIRTK_MedianPointData_H
21 #define MIRTK_MedianPointData_H
22 
23 #include "mirtk/PointDataFilter.h"
24 
25 
26 namespace mirtk {
27 
28 
29 /**
30  * Component-wise median filter for mesh node data
31  */
33 {
34  mirtkObjectMacro(MedianPointData);
35 
36  // ---------------------------------------------------------------------------
37  // Attributes
38 
39  /// Copy attributes of this filter from another instance
40  void CopyAttributes(const MedianPointData &);
41 
42  // ---------------------------------------------------------------------------
43  // Construction/Destruction
44 
45 public:
46 
47  /// Default constructor
49 
50  /// Copy constructor
52 
53  /// Assignment operator
55 
56  /// Destructor
57  virtual ~MedianPointData();
58 
59  // ---------------------------------------------------------------------------
60  // Execution
61 
62 protected:
63 
64  /// Execute filter
65  virtual void Execute();
66 
67 };
68 
69 
70 } // namespace mirtk
71 
72 #endif // MIRTK_MedianPointData_H
MedianPointData()
Default constructor.
virtual ~MedianPointData()
Destructor.
virtual void Execute()
Execute filter.
MedianPointData & operator=(const MedianPointData &)
Assignment operator.
Definition: IOConfig.h:41