DilateCellData.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_DilateCellData_H
21 #define MIRTK_DilateCellData_H
22 
23 #include "mirtk/CellDataFilter.h"
24 
25 
26 namespace mirtk {
27 
28 
29 /**
30  * Component-wise morphological dilation of mesh cell data
31  */
33 {
34  mirtkObjectMacro(DilateCellData);
35 
36  // ---------------------------------------------------------------------------
37  // Attributes
38 
39  /// Number of iterations
40  mirtkPublicAttributeMacro(int, Iterations);
41 
42  /// Copy attributes of this filter from another instance
43  void CopyAttributes(const DilateCellData &);
44 
45  // ---------------------------------------------------------------------------
46  // Construction/Destruction
47 
48 public:
49 
50  /// Default constructor
52 
53  /// Copy constructor
55 
56  /// Assignment operator
58 
59  /// Destructor
60  virtual ~DilateCellData();
61 
62  // ---------------------------------------------------------------------------
63  // Execution
64 
65 protected:
66 
67  /// Execute filter
68  virtual void Execute();
69 
70 };
71 
72 
73 } // namespace mirtk
74 
75 #endif // MIRTK_DilateCellData_H
DilateCellData & operator=(const DilateCellData &)
Assignment operator.
DilateCellData()
Default constructor.
Definition: IOConfig.h:41
virtual ~DilateCellData()
Destructor.
virtual void Execute()
Execute filter.