ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetEvolution.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 itkLevelSetEvolution_h
19#define itkLevelSetEvolution_h
20
23
26
29
32
35
36namespace itk
37{
47template <typename TEquationContainer, typename TLevelSet>
48class ITK_TEMPLATE_EXPORT LevelSetEvolution{};
49
50template <typename TEquationContainer, typename TImage>
51class ITK_TEMPLATE_EXPORT LevelSetEvolution<TEquationContainer, LevelSetDenseImage<TImage>>
52 : public LevelSetEvolutionBase<TEquationContainer, LevelSetDenseImage<TImage>>
53{
54public:
55 ITK_DISALLOW_COPY_AND_MOVE(LevelSetEvolution);
56
58
63
65 itkNewMacro(Self);
66
68 itkOverrideGetNameOfClassMacro(LevelSetEvolution);
69
72 using typename Superclass::TermContainerType;
74
75 using typename Superclass::TermType;
76 using typename Superclass::TermPointer;
77
78 using typename Superclass::InputImageType;
82 using typename Superclass::InputPixelRealType;
83
84 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
85
87
89
91
92 using typename Superclass::LevelSetOutputType;
94 using typename Superclass::LevelSetDataType;
95
96 using typename Superclass::IdListType;
97 using typename Superclass::IdListIterator;
99 using typename Superclass::IdListImageType;
100 using typename Superclass::CacheImageType;
102
105
108
111
113
115
117
119 void
120 SetNumberOfWorkUnits(const ThreadIdType numberOfThreads);
124
125 ~LevelSetEvolution() override = default;
126
127protected:
129
132 void
134
136 void
138
140 void
142
144 void
145 UpdateLevelSets() override;
146
148 void
149 UpdateEquations() override;
150
152 void
154
155 typename LevelSetContainerType::Pointer m_UpdateBuffer{};
156
157 friend class LevelSetEvolutionComputeIterationThreader<LevelSetType,
158 ThreadedImageRegionPartitioner<TImage::ImageDimension>,
159 Self>;
162 ThreadedImageRegionPartitioner<TImage::ImageDimension>,
163 Self>;
164 typename SplitLevelSetComputeIterationThreaderType::Pointer m_SplitLevelSetComputeIterationThreader{};
165
166 using DomainMapConstIteratorType = typename DomainMapImageFilterType::DomainMapType::const_iterator;
171 typename SplitDomainMapComputeIterationThreaderType::Pointer m_SplitDomainMapComputeIterationThreader{};
172
173 friend class LevelSetEvolutionUpdateLevelSetsThreader<LevelSetType,
174 ThreadedImageRegionPartitioner<TImage::ImageDimension>,
175 Self>;
178 ThreadedImageRegionPartitioner<TImage::ImageDimension>,
179 Self>;
180 typename SplitLevelSetUpdateLevelSetsThreaderType::Pointer m_SplitLevelSetUpdateLevelSetsThreader{};
181
184};
185
186
187template <typename TEquationContainer, typename TOutput, unsigned int VDimension>
188class ITK_TEMPLATE_EXPORT LevelSetEvolution<TEquationContainer, WhitakerSparseLevelSetImage<TOutput, VDimension>>
189 : public LevelSetEvolutionBase<TEquationContainer, WhitakerSparseLevelSetImage<TOutput, VDimension>>
190{
191public:
192 ITK_DISALLOW_COPY_AND_MOVE(LevelSetEvolution);
193
195
200
202 itkNewMacro(Self);
203
205 itkOverrideGetNameOfClassMacro(LevelSetEvolution);
206
209 using typename Superclass::TermContainerType;
211
212 using typename Superclass::TermType;
213 using typename Superclass::TermPointer;
214
215 using typename Superclass::InputImageType;
216 using typename Superclass::InputImagePixelType;
219 using typename Superclass::InputPixelRealType;
220
221 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
222
225
226 using typename Superclass::LevelSetInputType;
227 using typename Superclass::LevelSetOutputType;
229 using typename Superclass::LevelSetDataType;
230
232
235
236
237 using typename Superclass::IdListType;
238 using typename Superclass::IdListIterator;
239 using typename Superclass::IdListImageType;
240 using typename Superclass::CacheImageType;
242
245
247
251
253 void
254 SetNumberOfWorkUnits(const ThreadIdType numberOfWorkUnits);
258
259protected:
262
263 using NodePairType = std::pair<LevelSetInputType, LevelSetOutputType>;
264
265 // For sparse case, the update buffer needs to be the size of the active layer
266 std::map<IdentifierType, LevelSetLayerType *> m_UpdateBuffer{};
267
270 void
272
274 void
276
278 void
280
282 void
283 UpdateLevelSets() override;
284
286 void
287 UpdateEquations() override;
288
293 typename SplitLevelSetComputeIterationThreaderType::Pointer m_SplitLevelSetComputeIterationThreader{};
294};
295
296
297// Shi
298template <typename TEquationContainer, unsigned int VDimension>
299class ITK_TEMPLATE_EXPORT LevelSetEvolution<TEquationContainer, ShiSparseLevelSetImage<VDimension>>
300 : public LevelSetEvolutionBase<TEquationContainer, ShiSparseLevelSetImage<VDimension>>
301{
302public:
303 ITK_DISALLOW_COPY_AND_MOVE(LevelSetEvolution);
304
306
311
313 itkNewMacro(Self);
314
316 itkOverrideGetNameOfClassMacro(LevelSetEvolution);
317
320 using typename Superclass::TermContainerType;
322
323 using typename Superclass::TermType;
324 using typename Superclass::TermPointer;
325
326 using typename Superclass::InputImageType;
327 using typename Superclass::InputImagePixelType;
330 using typename Superclass::InputPixelRealType;
331
332 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
333
336
337 using typename Superclass::LevelSetInputType;
338 using typename Superclass::LevelSetOutputType;
340 using typename Superclass::LevelSetDataType;
341
343
346
347
348 using typename Superclass::IdListType;
349 using typename Superclass::IdListIterator;
350 using typename Superclass::IdListImageType;
351 using typename Superclass::CacheImageType;
353
356
358
361
362 LevelSetEvolution() = default;
363 ~LevelSetEvolution() override = default;
364
365protected:
367 void
368 UpdateLevelSets() override;
369
371 void
372 UpdateEquations() override;
373};
374
375// Malcolm
376template <typename TEquationContainer, unsigned int VDimension>
377class ITK_TEMPLATE_EXPORT LevelSetEvolution<TEquationContainer, MalcolmSparseLevelSetImage<VDimension>>
378 : public LevelSetEvolutionBase<TEquationContainer, MalcolmSparseLevelSetImage<VDimension>>
379{
380public:
381 ITK_DISALLOW_COPY_AND_MOVE(LevelSetEvolution);
382
384
389
391 itkNewMacro(Self);
392
394 itkOverrideGetNameOfClassMacro(LevelSetEvolution);
395
398 using typename Superclass::TermContainerType;
400
401 using typename Superclass::TermType;
402 using typename Superclass::TermPointer;
403
404 using typename Superclass::InputImageType;
405 using typename Superclass::InputImagePixelType;
408 using typename Superclass::InputPixelRealType;
409
410 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
411
414
415 using typename Superclass::LevelSetInputType;
416 using typename Superclass::LevelSetOutputType;
418 using typename Superclass::LevelSetDataType;
419
422
425
426
427 using typename Superclass::IdListType;
428 using typename Superclass::IdListIterator;
429 using typename Superclass::IdListImageType;
430 using typename Superclass::CacheImageType;
432
435
437
440
441 LevelSetEvolution() = default;
442 ~LevelSetEvolution() override = default;
443
444protected:
445 void
446 UpdateLevelSets() override;
447 void
448 UpdateEquations() override;
449};
450} // namespace itk
451
452#ifndef ITK_MANUAL_INSTANTIATION
453# include "itkLevelSetEvolution.hxx"
454#endif
455
456#endif // itkLevelSetEvolution_h
Binarize an input image by thresholding.
A multi-dimensional iterator templated over image type that walks an image region and is specialized ...
A multi-dimensional iterator templated over image type that walks pixels within a region and is speci...
Base class for the "dense" representation of a level-set function on one image.
typename TermContainerType::LevelSetContainerType LevelSetContainerType
typename LevelSetContainerType::IdListImageType IdListImageType
typename NumericTraits< InputImagePixelType >::RealType InputPixelRealType
typename LevelSetContainerType::CacheImageType CacheImageType
typename LevelSetContainerType::IdListConstIterator IdListConstIterator
typename LevelSetContainerType::DomainMapImageFilterType DomainMapImageFilterType
typename LevelSetContainerType::IdListIterator IdListIterator
typename LevelSetContainerType::LevelSetIdentifierType LevelSetIdentifierType
typename EquationContainerType::TermContainerType TermContainerType
LevelSetEvolutionStoppingCriterion< LevelSetContainerType > StoppingCriterionType
LevelSetEvolutionUpdateLevelSetsThreader< LevelSetType, ThreadedImageRegionPartitioner< TImage::ImageDimension >, Self > SplitLevelSetUpdateLevelSetsThreaderType
LevelSetEvolutionComputeIterationThreader< LevelSetType, ThreadedDomainMapPartitionerType, Self > SplitDomainMapComputeIterationThreaderType
LevelSetEvolutionComputeIterationThreader< LevelSetType, ThreadedImageRegionPartitioner< TImage::ImageDimension >, Self > SplitLevelSetComputeIterationThreaderType
SplitLevelSetComputeIterationThreaderType::Pointer m_SplitLevelSetComputeIterationThreader
ImageRegionConstIteratorWithIndex< LevelSetImageType > LevelSetImageConstIteratorType
SignedMaurerDistanceMapImageFilter< LevelSetImageType, LevelSetImageType > MaurerType
ImageRegionConstIteratorWithIndex< InputImageType > InputImageConstIteratorType
SplitDomainMapComputeIterationThreaderType::Pointer m_SplitDomainMapComputeIterationThreader
ThreadedIteratorRangePartitioner< DomainMapConstIteratorType > ThreadedDomainMapPartitionerType
ImageRegionIteratorWithIndex< LevelSetImageType > LevelSetImageIteratorType
typename DomainMapImageFilterType::DomainMapType::const_iterator DomainMapConstIteratorType
SplitLevelSetUpdateLevelSetsThreaderType::Pointer m_SplitLevelSetUpdateLevelSetsThreader
BinaryThresholdImageFilter< LevelSetImageType, LevelSetImageType > ThresholdFilterType
LevelSetEvolutionBase< TEquationContainer, LevelSetType > Superclass
UpdateMalcolmSparseLevelSet< ImageDimension, EquationContainerType > UpdateLevelSetFilterType
UpdateShiSparseLevelSet< ImageDimension, EquationContainerType > UpdateLevelSetFilterType
ThreadedIteratorRangePartitioner< typename LevelSetType::LayerConstIterator > SplitLevelSetPartitionerType
UpdateWhitakerSparseLevelSet< ImageDimension, LevelSetOutputType, EquationContainerType > UpdateLevelSetFilterType
LevelSetEvolutionComputeIterationThreader< LevelSetType, SplitLevelSetPartitionerType, Self > SplitLevelSetComputeIterationThreaderType
Class for iterating and evolving the level-set function.
std::map< InputType, OutputType, Functor::LexicographicCompare > LayerType
Derived class for the Malcolm representation of level-set function.
Derived class for the shi representation of level-set function.
This filter calculates the Euclidean distance transform of a binary image in linear time for arbitrar...
Implements transparent reference counting.
Class for partitioning of an ImageRegion.
Partitions an iterator range for threading.
Base class for updating the Malcolm representation of level-set function.
Base class for updating the Shi representation of level-set function.
Base class for updating the level-set function.
Derived class for the sparse-field representation of level-set function.
std::map< InputType, OutputType, Functor::LexicographicCompare > LayerType
LabelMap< LabelObjectType > LabelMapType
typename LabelMapType::Pointer LabelMapPointer
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned int ThreadIdType