ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBorderQuadEdgeMeshFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkBorderQuadEdgeMeshFilter_h
19#define itkBorderQuadEdgeMeshFilter_h
20
21#include "itkAutoPointer.h"
22#include "itkQuadEdgeMesh.h"
25#include "ITKQuadEdgeMeshFilteringExport.h"
26
27namespace itk
28{
34{
35public:
44
48 enum class BorderPick : uint8_t
49 {
52 };
53};
54// Define how to print enumeration
55extern ITKQuadEdgeMeshFiltering_EXPORT std::ostream &
56operator<<(std::ostream & out, const BorderQuadEdgeMeshFilterEnums::BorderTransform value);
57extern ITKQuadEdgeMeshFiltering_EXPORT std::ostream &
58operator<<(std::ostream & out, const BorderQuadEdgeMeshFilterEnums::BorderPick value);
81template <typename TInputMesh, typename TOutputMesh = TInputMesh>
82class ITK_TEMPLATE_EXPORT BorderQuadEdgeMeshFilter : public QuadEdgeMeshToQuadEdgeMeshFilter<TInputMesh, TOutputMesh>
83{
84public:
85 ITK_DISALLOW_COPY_AND_MOVE(BorderQuadEdgeMeshFilter);
86
92
93 using InputMeshType = TInputMesh;
94 using InputMeshConstPointer = typename InputMeshType::ConstPointer;
95 using InputCoordinateType = typename InputMeshType::CoordinateType;
96#ifndef ITK_FUTURE_LEGACY_REMOVE
97 using InputCoordRepType ITK_FUTURE_DEPRECATED(
98 "ITK 6 discourages using `InputCoordRepType`. Please use `InputCoordinateType` instead!") = InputCoordinateType;
99#endif
100 using InputPointType = typename InputMeshType::PointType;
101 using InputTraits = typename InputMeshType::Traits;
102 using InputPointIdentifier = typename InputMeshType::PointIdentifier;
103 using InputQEType = typename InputMeshType::QEType;
104 using InputIteratorGeom = typename InputQEType::IteratorGeom;
105 using InputVectorType = typename InputMeshType::VectorType;
106 using InputEdgeListType = typename InputMeshType::EdgeListType;
108 using InputEdgeListIterator = typename InputEdgeListType::iterator;
109 using InputEdgeCellType = typename InputMeshType::EdgeCellType;
110 using InputPolygonCellType = typename InputMeshType::PolygonCellType;
111 using InputPointIdList = typename InputMeshType::PointIdList;
112 using InputPointsContainer = typename InputMeshType::PointsContainer;
113 using InputPointsContainerConstIterator = typename InputMeshType::PointsContainerConstIterator;
114 using InputCellsContainerConstIterator = typename InputMeshType::CellsContainerConstIterator;
115
116 using OutputMeshType = TOutputMesh;
117 using OutputMeshPointer = typename OutputMeshType::Pointer;
118 using OutputCoordinateType = typename OutputMeshType::CoordinateType;
119#ifndef ITK_FUTURE_LEGACY_REMOVE
120 using OutputCoordRepType ITK_FUTURE_DEPRECATED(
121 "ITK 6 discourages using `OutputCoordRepType`. Please use `OutputCoordinateType` instead!") = OutputCoordinateType;
122#endif
123 using OutputPointType = typename OutputMeshType::PointType;
124 using OutputTraits = typename OutputMeshType::Traits;
125 using OutputPointIdentifier = typename OutputMeshType::PointIdentifier;
126 using OutputQEType = typename OutputMeshType::QEType;
127 using OutputVectorType = typename OutputMeshType::VectorType;
128 using OutputEdgeListType = typename OutputMeshType::EdgeListType;
129 using OutputEdgeCellType = typename OutputMeshType::EdgeCellType;
130 using OutputPolygonCellType = typename OutputMeshType::PolygonCellType;
131 using OutputPointIdList = typename OutputMeshType::PointIdList;
132 using OutputPointsContainer = typename OutputMeshType::PointsContainer;
133 using OutputPointsContainerConstIterator = typename OutputMeshType::PointsContainerConstIterator;
134 using OutputCellsContainerConstIterator = typename OutputMeshType::CellsContainerConstIterator;
135
136 itkNewMacro(Self);
137 itkOverrideGetNameOfClassMacro(BorderQuadEdgeMeshFilter);
138 static constexpr unsigned int PointDimension = InputTraits::PointDimension;
139
140 using InputVectorPointType = std::vector<InputPointType>;
141 using MapPointIdentifier = std::map<InputPointIdentifier, OutputPointIdentifier>;
142 using MapPointIdentifierIterator = typename MapPointIdentifier::iterator;
143
146
149#if !defined(ITK_LEGACY_REMOVE)
151 static constexpr BorderTransformEnum SQUARE_BORDER_TRANSFORM = BorderTransformEnum::SQUARE_BORDER_TRANSFORM;
152 static constexpr BorderTransformEnum DISK_BORDER_TRANSFORM = BorderTransformEnum::DISK_BORDER_TRANSFORM;
153
154 static constexpr BorderPickEnum LONGEST = BorderPickEnum::LONGEST;
155 static constexpr BorderPickEnum LARGEST = BorderPickEnum::LARGEST;
156#endif
157
158 itkSetEnumMacro(TransformType, BorderTransformEnum);
159 itkGetConstMacro(TransformType, BorderTransformEnum);
160
161 itkSetEnumMacro(BorderPick, BorderPickEnum);
162 itkGetConstMacro(BorderPick, BorderPickEnum);
163
164 itkSetMacro(Radius, InputCoordinateType);
165 itkGetConstMacro(Radius, InputCoordinateType);
166
167 void
169
172
175
176protected:
178
179 ~BorderQuadEdgeMeshFilter() override = default;
180
181 void
182 PrintSelf(std::ostream & os, Indent indent) const override;
183
186
188
190
192
193 void
194 GenerateData() override;
195
196 void
198
201
204
205 void
207
210
213
214 void
216};
217} // end namespace itk
218
219#ifndef ITK_MANUAL_INSTANTIATION
220# include "itkBorderQuadEdgeMeshFilter.hxx"
221#endif
222
223#endif
Implements an Automatic Pointer to an object.
Contains all enum classes used by.
InputVectorPointType GetBorder()
itk::BorderQuadEdgeMeshFilterEnums::BorderPick BorderPickEnum
typename OutputMeshType::QEType OutputQEType
~BorderQuadEdgeMeshFilter() override=default
typename OutputMeshType::CellsContainerConstIterator OutputCellsContainerConstIterator
QuadEdgeMeshBoundaryEdgesMeshFunction< InputMeshType > BoundaryRepresentativeEdgesType
std::map< InputPointIdentifier, OutputPointIdentifier > MapPointIdentifier
InputCoordinateType RadiusMaxSquare()
typename MapPointIdentifier::iterator MapPointIdentifierIterator
typename InputQEType::IteratorGeom InputIteratorGeom
typename InputMeshType::QEType InputQEType
typename OutputMeshType::EdgeListType OutputEdgeListType
typename OutputMeshType::PointIdentifier OutputPointIdentifier
typename OutputMeshType::PolygonCellType OutputPolygonCellType
AutoPointer< InputEdgeListType > InputEdgeListPointerType
InputPointType GetMeshBarycentre()
typename InputMeshType::PointsContainerConstIterator InputPointsContainerConstIterator
typename InputMeshType::EdgeListType InputEdgeListType
typename InputMeshType::EdgeCellType InputEdgeCellType
typename BoundaryRepresentativeEdgesType::Pointer BoundaryRepresentativeEdgesPointer
typename OutputMeshType::Pointer OutputMeshPointer
void PrintSelf(std::ostream &os, Indent indent) const override
typename InputMeshType::CoordinateType InputCoordinateType
typename OutputMeshType::EdgeCellType OutputEdgeCellType
itk::BorderQuadEdgeMeshFilterEnums::BorderTransform BorderTransformEnum
MapPointIdentifier GetBoundaryPtMap()
typename InputMeshType::VectorType InputVectorType
QuadEdgeMeshToQuadEdgeMeshFilter< TInputMesh, TOutputMesh > Superclass
typename InputMeshType::PointIdentifier InputPointIdentifier
typename InputMeshType::PointIdList InputPointIdList
std::vector< InputPointType > InputVectorPointType
typename OutputMeshType::PointsContainerConstIterator OutputPointsContainerConstIterator
typename OutputMeshType::PointsContainer OutputPointsContainer
InputQEType * ComputeLargestBorder()
typename InputMeshType::Traits InputTraits
typename OutputMeshType::VectorType OutputVectorType
typename OutputMeshType::Traits OutputTraits
InputQEType * ComputeLongestBorder()
typename InputEdgeListType::iterator InputEdgeListIterator
typename InputMeshType::PointType InputPointType
typename InputMeshType::CellsContainerConstIterator InputCellsContainerConstIterator
typename InputMeshType::PolygonCellType InputPolygonCellType
typename InputMeshType::PointsContainer InputPointsContainer
typename OutputMeshType::CoordinateType OutputCoordinateType
SmartPointer< const Self > ConstPointer
typename OutputMeshType::PointType OutputPointType
typename InputMeshType::ConstPointer InputMeshConstPointer
typename OutputMeshType::PointIdList OutputPointIdList
Control indentation during Print() invocation.
Definition itkIndent.h:50
Build a list of references to edges (as GeometricalQuadEdge::RawPointer) each one representing a diff...
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
ITKCommon_EXPORT std::ostream & operator<<(std::ostream &out, typename AnatomicalOrientation::CoordinateEnum value)