ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkRegionBasedLevelSetFunctionSharedData.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 itkRegionBasedLevelSetFunctionSharedData_h
19#define itkRegionBasedLevelSetFunctionSharedData_h
20
21#include "itkLightObject.h"
22
23#include "itkVector.h"
24#include "itkListSample.h"
25#include "itkKdTreeGenerator.h"
26
29
30namespace itk
31{
48template <typename TInputImage, typename TFeatureImage, typename TSingleData>
50{
51public:
52 ITK_DISALLOW_COPY_AND_MOVE(RegionBasedLevelSetFunctionSharedData);
53
58
59 static constexpr unsigned int ImageDimension = TFeatureImage::ImageDimension;
60
61 itkOverrideGetNameOfClassMacro(RegionBasedLevelSetFunctionSharedData);
62
63 using InputImageType = TInputImage;
64 using InputImagePointer = typename InputImageType::Pointer;
65 using InputImageConstPointer = typename InputImageType::ConstPointer;
66 using InputPixelType = typename InputImageType::PixelType;
67 using InputRegionType = typename InputImageType::RegionType;
68 using InputSizeType = typename InputImageType::SizeType;
69 using InputSizeValueType = typename InputSizeType::SizeValueType;
70 using InputSpacingType = typename InputImageType::SpacingType;
71 using InputIndexType = typename InputImageType::IndexType;
72 using InputIndexValueType = typename InputIndexType::IndexValueType;
73 using InputPointType = typename InputImageType::PointType;
74
75 using FeatureImageType = TFeatureImage;
76 using FeatureImagePointer = typename FeatureImageType::Pointer;
77 using FeatureImageConstPointer = typename FeatureImageType::ConstPointer;
78 using FeaturePixelType = typename FeatureImageType::PixelType;
79 using FeatureRegionType = typename FeatureImageType::RegionType;
80 using FeatureSizeType = typename FeatureImageType::SizeType;
81 using FeatureSizeValueType = typename FeatureSizeType::SizeValueType;
82 using FeatureSpacingType = typename FeatureImageType::SpacingType;
83 using FeatureIndexType = typename FeatureImageType::IndexType;
84 using FeaturePointType = typename FeatureImageType::PointType;
85
86 using ListPixelType = std::list<unsigned int>;
92 using ListSizeValueType = typename ListSizeType::SizeValueType;
95 using ListIndexValueType = typename ListIndexType::IndexValueType;
98
104 using KdTreePointer = typename TreeType::Pointer;
105
106 using LevelSetDataType = TSingleData;
107 using LevelSetDataPointer = typename LevelSetDataType::Pointer;
108 using LevelSetDataPointerVector = std::vector<LevelSetDataPointer>;
109 using LevelSetDataPointerVectorIterator = typename LevelSetDataPointerVector::iterator;
110
111 void
112 SetFunctionCount(const unsigned int n)
113 {
114 this->m_FunctionCount = n;
115 this->m_LevelSetDataPointerVector.resize(n, nullptr);
116
117 auto it = m_LevelSetDataPointerVector.begin();
118 auto end = m_LevelSetDataPointerVector.end();
119 while (it != end)
120 {
121 (*it) = LevelSetDataType::New();
122 ++it;
123 }
124 }
125
126 void
127 SetNumberOfNeighbors(const unsigned int n)
128 {
129 this->m_NumberOfNeighbors = n;
130 }
131
132 void
133 CreateHeavisideFunctionOfLevelSetImage(const unsigned int j, const InputImageType * image)
134 {
135 m_LevelSetDataPointerVector[j]->CreateHeavisideFunctionOfLevelSetImage(image);
136 }
137
138 void
140 {
141 this->m_KdTree = kdtree;
142 }
143
144 void
146 {
148 this->m_NearestNeighborListImage->CopyInformation(featureImage);
149 this->m_NearestNeighborListImage->SetRegions(featureImage->GetLargestPossibleRegion());
150 this->m_NearestNeighborListImage->Allocate();
151 }
152
153 virtual void
155
157
158 unsigned int m_FunctionCount{};
159 unsigned int m_NumberOfNeighbors{ 6 };
162
163protected:
168};
169} // end namespace itk
170
171#endif
A multi-dimensional iterator templated over image type that walks pixels within a region and is speci...
Templated n-dimensional image class.
Definition itkImage.h:89
Point< PointValueType, VImageDimension > PointType
ImageRegion< VImageDimension > RegionType
Vector< SpacingValueType, VImageDimension > SpacingType
itk::Statistics::ListSample< CentroidVectorType > SampleType
typename LevelSetDataPointerVector::iterator LevelSetDataPointerVectorIterator
~RegionBasedLevelSetFunctionSharedData() override=default
ImageRegionIteratorWithIndex< ListImageType > ListIteratorType
Image< ListPixelType, Self::ImageDimension > ListImageType
itk::Statistics::KdTreeGenerator< SampleType > TreeGeneratorType
void CreateHeavisideFunctionOfLevelSetImage(const unsigned int j, const InputImageType *image)
Implements transparent reference counting.
This class generates a KdTree object without centroid information.
This class is the native implementation of the a Sample with an STL container.
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....