ITK  6.0.0
Insight Toolkit
itkQuadEdgeCellTraitsInfo.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 itkQuadEdgeCellTraitsInfo_h
19#define itkQuadEdgeCellTraitsInfo_h
20
22#include "itkMapContainer.h"
23#include "itkIntTypes.h"
24#include <set>
25
26namespace itk
27{
39template <int VPointDimension,
40 typename TCoordRep = float,
41 typename TInterpolationWeight = float,
42 typename TPointIdentifier = IdentifierType,
43 typename TCellIdentifier = IdentifierType,
44 typename TCellFeatureIdentifier = unsigned char,
45 typename TPoint = QuadEdgeMeshPoint<TCoordRep, VPointDimension>,
46 typename TPointsContainer = MapContainer<TPointIdentifier, TPoint>,
47 typename TUsingCellsContainer = std::set<TPointIdentifier>,
48 typename TQE = GeometricalQuadEdge<unsigned long, unsigned long, bool, bool, true>>
49class QuadEdgeMeshCellTraitsInfo
50{
51public:
52 static constexpr unsigned int PointDimension = VPointDimension;
53 using CoordRepType = TCoordRep;
54 using InterpolationWeightType = TInterpolationWeight;
55 using PointIdentifier = TPointIdentifier;
56 using CellIdentifier = TCellIdentifier;
57 using CellFeatureIdentifier = TCellFeatureIdentifier;
58 using PointType = TPoint;
59 using PointsContainer = TPointsContainer;
60 using UsingCellsContainer = TUsingCellsContainer;
61
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
SizeValueType IdentifierType
Definition: itkIntTypes.h:90