Modules
PointSet
include
mirtk
ErodePointData.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_ErodePointData_H
21
#define MIRTK_ErodePointData_H
22
23
#include "mirtk/PointDataFilter.h"
24
25
26
namespace
mirtk
{
27
28
29
/**
30
* Component-wise morphological erosion of mesh node data
31
*/
32
class
ErodePointData
:
public
PointDataFilter
33
{
34
mirtkObjectMacro(
ErodePointData
);
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
ErodePointData
&);
44
45
// ---------------------------------------------------------------------------
46
// Construction/Destruction
47
48
public
:
49
50
/// Default constructor
51
ErodePointData
();
52
53
/// Copy constructor
54
ErodePointData
(
const
ErodePointData
&);
55
56
/// Assignment operator
57
ErodePointData
&
operator =
(
const
ErodePointData
&);
58
59
/// Destructor
60
virtual
~ErodePointData
();
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_ErodePointData_H
mirtk::PointDataFilter
Definition:
PointDataFilter.h:39
mirtk::ErodePointData::~ErodePointData
virtual ~ErodePointData()
Destructor.
mirtk
Definition:
IOConfig.h:41
mirtk::ErodePointData::operator=
ErodePointData & operator=(const ErodePointData &)
Assignment operator.
mirtk::ErodePointData::ErodePointData
ErodePointData()
Default constructor.
mirtk::ErodePointData
Definition:
ErodePointData.h:32
mirtk::ErodePointData::Execute
virtual void Execute()
Execute filter.