ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkQuadEdgeMeshExtendedTraits.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 itkQuadEdgeMeshExtendedTraits_h
19#define itkQuadEdgeMeshExtendedTraits_h
20
21#include "itkCellInterface.h"
23#include <set>
24
25namespace itk
26{
60template <typename TPixelType = float,
61 unsigned int VPointDimension = 3,
62 unsigned int VMaxTopologicalDimension = VPointDimension,
63 typename TCoordinate = float,
64 typename TInterpolationWeightType = float,
65 typename TCellPixelType = TPixelType,
66 typename TPData = bool,
67 typename TDData = bool>
69{
70public:
73 using CoordinateType = TCoordinate;
74#ifndef ITK_FUTURE_LEGACY_REMOVE
75 using CoordRepType ITK_FUTURE_DEPRECATED(
76 "ITK 6 discourages using `CoordRepType`. Please use `CoordinateType` instead!") = CoordinateType;
77#endif
78 using PixelType = TPixelType;
79 using PrimalDataType = TPData;
80 using DualDataType = TDData;
81 using CellPixelType = TCellPixelType;
82
84 static constexpr unsigned int PointDimension = VPointDimension;
85 static constexpr unsigned int MaxTopologicalDimension = VPointDimension;
86
87 using InterpolationWeightType = TInterpolationWeightType;
88
92
96
101
104 using UsingCellsContainer = std::set<CellIdentifier>;
105
108 using PointCellLinksContainer = std::set<CellIdentifier>;
109
112 using QEDual = typename QEPrimal::DualType;
115
120
122
126
128 using CellTraits = QuadEdgeMeshCellTraitsInfo<VPointDimension,
134 PointType,
137 QEPrimal>;
138
142
148
151};
152} // end namespace itk
153
154#endif
An abstract interface for cells.
This class extends the QuadEdge by adding a reference to the Origin.
GeometricalQuadEdge< CellIdentifier, PointIdentifier, DualDataType, PrimalDataType, !true > DualType
A wrapper of the STL "map" container.
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
Vector< ValueType, VPointDimension > VectorType
Definition itkPoint.h:87
Helper class holding the traits of QuadEdge cells.
Extended traits for a QuadEdgeMesh.
static constexpr unsigned int PointDimension
MapContainer< CellIdentifier, CellType * > CellsContainer
MapContainer< PointIdentifier, PointType > PointsContainer
typename QEPrimal::OriginRefType VertexRefType
Point< CoordinateType, VPointDimension > PointHashType
typename QEPrimal::DualOriginRefType FaceRefType
MapContainer< CellIdentifier, CellPixelType > CellDataContainer
std::set< CellIdentifier > PointCellLinksContainer
typename PointType::VectorType VectorType
MapContainer< PointIdentifier, PixelType > PointDataContainer
QuadEdgeMeshCellTraitsInfo< VPointDimension, CoordinateType, InterpolationWeightType, PointIdentifier, CellIdentifier, CellFeatureIdentifier, PointType, PointsContainer, UsingCellsContainer, QEPrimal > CellTraits
MapContainer< PointIdentifier, PointCellLinksContainer > CellLinksContainer
typename CellType::CellAutoPointer CellAutoPointer
GeometricalQuadEdge< PointIdentifier, CellIdentifier, PrimalDataType, DualDataType > QEPrimal
static constexpr unsigned int MaxTopologicalDimension
QuadEdgeMeshPoint< CoordinateType, VPointDimension, QEPrimal > PointType
CellInterface< CellPixelType, CellTraits > CellType
Wrapper around a itk::Point in order to add a reference to an entry in the edge ring.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition itkIntTypes.h:90