ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkLevelSetEvolutionUpdateLevelSetsThreader.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkLevelSetEvolutionUpdateLevelSetsThreader_h
19 #define itkLevelSetEvolutionUpdateLevelSetsThreader_h
20 
22 #include "itkDomainThreader.h"
23 #include "itkLevelSetDenseImage.h"
25 
26 namespace itk
27 {
28 
36 template< typename TLevelSet, typename TDomainPartitioner, typename TLevelSetEvolution >
38 {};
39 
40 // For dense image level set.
41 template< typename TImage, typename TLevelSetEvolution >
42 class ITK_TEMPLATE_EXPORT LevelSetEvolutionUpdateLevelSetsThreader< LevelSetDenseImage< TImage >, ThreadedImageRegionPartitioner< TImage::ImageDimension >, TLevelSetEvolution >
43  : public DomainThreader< ThreadedImageRegionPartitioner< TImage::ImageDimension >, TLevelSetEvolution >
44 {
45 public:
46  ITK_DISALLOW_COPY_AND_ASSIGN(LevelSetEvolutionUpdateLevelSetsThreader);
47 
53 
56 
58  itkNewMacro( Self );
59 
61  using DomainType = typename Superclass::DomainType;
62  using AssociateType = typename Superclass::AssociateType;
63 
65  using LevelSetEvolutionType = TLevelSetEvolution;
66  using LevelSetContainerType = typename LevelSetEvolutionType::LevelSetContainerType;
67  using LevelSetType = typename LevelSetEvolutionType::LevelSetType;
68  using LevelSetImageType = typename LevelSetEvolutionType::LevelSetImageType;
69  using LevelSetOutputRealType = typename LevelSetEvolutionType::LevelSetOutputRealType;
70 
71 protected:
73 
74  void BeforeThreadedExecution() override;
75 
76  void ThreadedExecution( const DomainType & imageSubRegion, const ThreadIdType threadId ) override;
77 
78  void AfterThreadedExecution() override;
79 
81  using RMSChangeAccumulatorPerThreadType = std::vector< RMSChangeAccumulatorType >;
82 
84 };
85 
86 } // end namespace itk
87 
88 #ifndef ITK_MANUAL_INSTANTIATION
89 #include "itkLevelSetEvolutionUpdateLevelSetsThreader.hxx"
90 #endif
91 
92 #endif
Light weight base class for most itk classes.
Multi-threaded processing on a domain by processing sub-domains per thread.
Class for partitioning of an ImageRegion.
Perform more precise accumulation of floating point numbers.
Base class for the &quot;dense&quot; representation of a level-set function on one image.
unsigned int ThreadIdType
Definition: itkIntTypes.h:99