ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkConstrainedRegionBasedLevelSetFunctionSharedData.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 itkConstrainedRegionBasedLevelSetFunctionSharedData_h
19#define itkConstrainedRegionBasedLevelSetFunctionSharedData_h
20
22
23namespace itk
24{
41template <typename TInputImage, typename TFeatureImage, typename TSingleData>
43 : public RegionBasedLevelSetFunctionSharedData<TInputImage, TFeatureImage, TSingleData>
44{
45public:
46 ITK_DISALLOW_COPY_AND_MOVE(ConstrainedRegionBasedLevelSetFunctionSharedData);
47
52
53 static constexpr unsigned int ImageDimension = TFeatureImage::ImageDimension;
54
56 itkNewMacro(Self);
57
58 itkOverrideGetNameOfClassMacro(ConstrainedRegionBasedLevelSetFunctionSharedData);
59
60 using InputImageType = TInputImage;
61 using typename Superclass::InputImagePointer;
63 using typename Superclass::InputPixelType;
64 using typename Superclass::InputRegionType;
65 using typename Superclass::InputSizeType;
66 using typename Superclass::InputSizeValueType;
67 using typename Superclass::InputSpacingType;
68 using typename Superclass::InputIndexType;
70 using typename Superclass::InputPointType;
71
72 using FeatureImageType = TFeatureImage;
75 using typename Superclass::FeaturePixelType;
76 using typename Superclass::FeatureRegionType;
77 using typename Superclass::FeatureSizeType;
79 using typename Superclass::FeatureSpacingType;
80 using typename Superclass::FeatureIndexType;
81 using typename Superclass::FeaturePointType;
82
83 using typename Superclass::ListPixelType;
84 using typename Superclass::ListImageType;
85 using typename Superclass::ListImagePointer;
87 using typename Superclass::ListRegionType;
88 using typename Superclass::ListSizeType;
89 using typename Superclass::ListSizeValueType;
90 using typename Superclass::ListSpacingType;
91 using typename Superclass::ListIndexType;
92 using typename Superclass::ListIndexValueType;
93 using typename Superclass::ListPointType;
94 using typename Superclass::ListIteratorType;
95
96 using typename Superclass::CentroidVectorType;
97 using typename Superclass::SampleType;
98 using typename Superclass::TreeGeneratorType;
99 using typename Superclass::TreePointer;
100 using typename Superclass::TreeType;
101 using typename Superclass::KdTreePointer;
102
103 using LevelSetDataType = TSingleData;
104 using typename Superclass::LevelSetDataPointer;
107
108 void
110 {
111 ListSpacingType spacing = this->m_NearestNeighborListImage->GetSpacing();
112
113 ListRegionType region = this->m_NearestNeighborListImage->GetLargestPossibleRegion();
114
116
117 if (this->m_KdTree.IsNotNull())
118 {
119 for (lIt.GoToBegin(); !lIt.IsAtEnd(); ++lIt)
120 {
121 ListIndexType ind = lIt.GetIndex();
122
123 float queryPoint[ImageDimension];
124 for (unsigned int i = 0; i < ImageDimension; ++i)
125 {
126 queryPoint[i] = ind[i] * spacing[i];
127 }
128
129 typename TreeType::InstanceIdentifierVectorType neighbors;
130 this->m_KdTree->Search(queryPoint, this->m_NumberOfNeighbors, neighbors);
131
133 for (unsigned int i = 0; i < this->m_NumberOfNeighbors; ++i)
134 {
135 if (this->m_LevelSetDataPointerVector[i]->VerifyInsideRegion(ind))
136 {
137 L.push_back(neighbors[i]);
138 }
139 }
140 lIt.Set(L);
141 }
142 }
143 else
144 {
145 for (lIt.GoToBegin(); !lIt.IsAtEnd(); ++lIt)
146 {
147 ListIndexType ind = lIt.GetIndex();
149 for (unsigned int i = 0; i < this->m_FunctionCount; ++i)
150 {
151 if (this->m_LevelSetDataPointerVector[i]->VerifyInsideRegion(ind))
152 {
153 L.push_back(i);
154 }
155 }
156 lIt.Set(L);
157 }
158 }
159 }
160
161protected:
166};
167} // end namespace itk
168
169#endif
RegionBasedLevelSetFunctionSharedData< TInputImage, TFeatureImage, TSingleData > Superclass
itk::Statistics::ListSample< CentroidVectorType > SampleType
typename LevelSetDataPointerVector::iterator LevelSetDataPointerVectorIterator
ImageRegionIteratorWithIndex< ListImageType > ListIteratorType
Image< ListPixelType, Self::ImageDimension > ListImageType
itk::Statistics::KdTreeGenerator< SampleType > TreeGeneratorType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....