ITK  5.4.0
Insight Toolkit
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 
27 #include "itkImageRegionIterator.h"
29 
30 namespace itk
31 {
64 template <typename TInputImage, typename TFeatureImage, typename TSingleData>
66 {
67 public:
68  ITK_DISALLOW_COPY_AND_MOVE(RegionBasedLevelSetFunctionSharedData);
69 
74 
75  static constexpr unsigned int ImageDimension = TFeatureImage::ImageDimension;
76 
77  itkOverrideGetNameOfClassMacro(RegionBasedLevelSetFunctionSharedData);
78 
79  using InputImageType = TInputImage;
82  using InputPixelType = typename InputImageType::PixelType;
86  using InputSpacingType = typename InputImageType::SpacingType;
90 
91  using FeatureImageType = TFeatureImage;
94  using FeaturePixelType = typename FeatureImageType::PixelType;
98  using FeatureSpacingType = typename FeatureImageType::SpacingType;
101 
102  using ListPixelType = std::list<unsigned int>;
114 
121 
122  using LevelSetDataType = TSingleData;
124  using LevelSetDataPointerVector = std::vector<LevelSetDataPointer>;
125  using LevelSetDataPointerVectorIterator = typename LevelSetDataPointerVector::iterator;
126 
127  void
128  SetFunctionCount(const unsigned int n)
129  {
130  this->m_FunctionCount = n;
131  this->m_LevelSetDataPointerVector.resize(n, nullptr);
132 
133  auto it = m_LevelSetDataPointerVector.begin();
134  auto end = m_LevelSetDataPointerVector.end();
135  while (it != end)
136  {
137  (*it) = LevelSetDataType::New();
138  ++it;
139  }
140  }
141 
142  void
143  SetNumberOfNeighbors(const unsigned int n)
144  {
145  this->m_NumberOfNeighbors = n;
146  }
147 
148  void
149  CreateHeavisideFunctionOfLevelSetImage(const unsigned int j, const InputImageType * image)
150  {
151  m_LevelSetDataPointerVector[j]->CreateHeavisideFunctionOfLevelSetImage(image);
152  }
153 
154  void
156  {
157  this->m_KdTree = kdtree;
158  }
159 
160  void
161  AllocateListImage(const FeatureImageType * featureImage)
162  {
164  this->m_NearestNeighborListImage->CopyInformation(featureImage);
165  this->m_NearestNeighborListImage->SetRegions(featureImage->GetLargestPossibleRegion());
166  this->m_NearestNeighborListImage->Allocate();
167  }
168 
169  virtual void
170  PopulateListImage() = 0;
171 
173 
174  unsigned int m_FunctionCount{};
175  unsigned int m_NumberOfNeighbors{ 6 };
178 
179 protected:
181  : m_KdTree(nullptr)
182  {}
183  ~RegionBasedLevelSetFunctionSharedData() override = default;
184 };
185 } // end namespace itk
186 
187 #endif
itk::RegionBasedLevelSetFunctionSharedData::m_NumberOfNeighbors
unsigned int m_NumberOfNeighbors
Definition: itkRegionBasedLevelSetFunctionSharedData.h:175
Pointer
SmartPointer< Self > Pointer
Definition: itkAddImageFilter.h:93
itk::RegionBasedLevelSetFunctionSharedData::m_KdTree
KdTreePointer m_KdTree
Definition: itkRegionBasedLevelSetFunctionSharedData.h:177
itk::RegionBasedLevelSetFunctionSharedData::FeatureIndexType
typename FeatureImageType::IndexType FeatureIndexType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:99
ConstPointer
SmartPointer< const Self > ConstPointer
Definition: itkAddImageFilter.h:94
itk::RegionBasedLevelSetFunctionSharedData::SetKdTree
void SetKdTree(KdTreePointer kdtree)
Definition: itkRegionBasedLevelSetFunctionSharedData.h:155
itk::RegionBasedLevelSetFunctionSharedData::ListPixelType
std::list< unsigned int > ListPixelType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:102
itk::RegionBasedLevelSetFunctionSharedData::m_NearestNeighborListImage
ListImagePointer m_NearestNeighborListImage
Definition: itkRegionBasedLevelSetFunctionSharedData.h:176
itk::ImageBase::SpacingType
Vector< SpacingValueType, VImageDimension > SpacingType
Definition: itkImageBase.h:161
itk::RegionBasedLevelSetFunctionSharedData::InputImageConstPointer
typename InputImageType::ConstPointer InputImageConstPointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:81
itk::RegionBasedLevelSetFunctionSharedData::m_FunctionCount
unsigned int m_FunctionCount
Definition: itkRegionBasedLevelSetFunctionSharedData.h:174
itk::Statistics::KdTreeGenerator::Pointer
SmartPointer< Self > Pointer
Definition: itkKdTreeGenerator.h:79
itk::GTest::TypedefsAndConstructors::Dimension2::PointType
ImageBaseType::PointType PointType
Definition: itkGTestTypedefsAndConstructors.h:51
itk::Vector
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
itk::RegionBasedLevelSetFunctionSharedData::ListSizeType
typename ListImageType::SizeType ListSizeType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:107
itk::RegionBasedLevelSetFunctionSharedData::SetFunctionCount
void SetFunctionCount(const unsigned int n)
Definition: itkRegionBasedLevelSetFunctionSharedData.h:128
itk::RegionBasedLevelSetFunctionSharedData::InputImageType
TInputImage InputImageType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:79
itk::RegionBasedLevelSetFunctionSharedData::ListSizeValueType
typename ListSizeType::SizeValueType ListSizeValueType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:108
itk::GTest::TypedefsAndConstructors::Dimension2::SizeType
ImageBaseType::SizeType SizeType
Definition: itkGTestTypedefsAndConstructors.h:49
itk::Statistics::ListSample
This class is the native implementation of the a Sample with an STL container.
Definition: itkListSample.h:51
itk::RegionBasedLevelSetFunctionSharedData::FeatureSizeValueType
typename FeatureSizeType::SizeValueType FeatureSizeValueType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:97
itk::RegionBasedLevelSetFunctionSharedData::InputSizeValueType
typename InputSizeType::SizeValueType InputSizeValueType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:85
itk::LightObject::LightObject
LightObject()
itk::RegionBasedLevelSetFunctionSharedData::TreePointer
typename TreeGeneratorType::Pointer TreePointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:118
itk::SmartPointer< Self >
itkImageRegionIterator.h
itk::RegionBasedLevelSetFunctionSharedData::PopulateListImage
virtual void PopulateListImage()=0
itk::Image::Pointer
SmartPointer< Self > Pointer
Definition: itkImage.h:96
itk::RegionBasedLevelSetFunctionSharedData::KdTreePointer
typename TreeType::Pointer KdTreePointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:120
itk::RegionBasedLevelSetFunctionSharedData::TreeType
typename TreeGeneratorType::KdTreeType TreeType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:119
itkImageRegionIteratorWithIndex.h
itk::RegionBasedLevelSetFunctionSharedData::InputIndexValueType
typename InputIndexType::IndexValueType InputIndexValueType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:88
itk::RegionBasedLevelSetFunctionSharedData::FeaturePixelType
typename FeatureImageType::PixelType FeaturePixelType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:94
itk::ImageBase::PointType
Point< PointValueType, VImageDimension > PointType
Definition: itkImageBase.h:166
itk::RegionBasedLevelSetFunctionSharedData::InputImagePointer
typename InputImageType::Pointer InputImagePointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:80
itk::IndexValueType
long IndexValueType
Definition: itkIntTypes.h:90
itk::RegionBasedLevelSetFunctionSharedData::FeatureSizeType
typename FeatureImageType::SizeType FeatureSizeType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:96
itk::ImageBase::IndexType
Index< VImageDimension > IndexType
Definition: itkImageBase.h:141
itk::RegionBasedLevelSetFunctionSharedData::~RegionBasedLevelSetFunctionSharedData
~RegionBasedLevelSetFunctionSharedData() override=default
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::RegionBasedLevelSetFunctionSharedData::RegionBasedLevelSetFunctionSharedData
RegionBasedLevelSetFunctionSharedData()
Definition: itkRegionBasedLevelSetFunctionSharedData.h:180
itk::RegionBasedLevelSetFunctionSharedData::ListImageConstPointer
typename ListImageType::ConstPointer ListImageConstPointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:105
itk::RegionBasedLevelSetFunctionSharedData::ListSpacingType
typename ListImageType::SpacingType ListSpacingType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:109
itk::LightObject
Light weight base class for most itk classes.
Definition: itkLightObject.h:55
itk::RegionBasedLevelSetFunctionSharedData::InputSpacingType
typename InputImageType::SpacingType InputSpacingType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:86
itk::RegionBasedLevelSetFunctionSharedData::FeatureImagePointer
typename FeatureImageType::Pointer FeatureImagePointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:92
itk::RegionBasedLevelSetFunctionSharedData::InputIndexType
typename InputImageType::IndexType InputIndexType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:87
itk::RegionBasedLevelSetFunctionSharedData::AllocateListImage
void AllocateListImage(const FeatureImageType *featureImage)
Definition: itkRegionBasedLevelSetFunctionSharedData.h:161
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itk::RegionBasedLevelSetFunctionSharedData::InputPixelType
typename InputImageType::PixelType InputPixelType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:82
itk::Statistics::KdTreeGenerator::KdTreeType
KdTree< TSample > KdTreeType
Definition: itkKdTreeGenerator.h:96
itk::RegionBasedLevelSetFunctionSharedData::InputPointType
typename InputImageType::PointType InputPointType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:89
itk::ImageBase::RegionType
ImageRegion< VImageDimension > RegionType
Definition: itkImageBase.h:154
itk::RegionBasedLevelSetFunctionSharedData::InputSizeType
typename InputImageType::SizeType InputSizeType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:84
itk::RegionBasedLevelSetFunctionSharedData::ListIndexType
typename ListImageType::IndexType ListIndexType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:110
itk::RegionBasedLevelSetFunctionSharedData::FeaturePointType
typename FeatureImageType::PointType FeaturePointType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:100
itk::RegionBasedLevelSetFunctionSharedData::CreateHeavisideFunctionOfLevelSetImage
void CreateHeavisideFunctionOfLevelSetImage(const unsigned int j, const InputImageType *image)
Definition: itkRegionBasedLevelSetFunctionSharedData.h:149
itk::RegionBasedLevelSetFunctionSharedData::ListPointType
typename ListImageType::PointType ListPointType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:112
itk::RegionBasedLevelSetFunctionSharedData::LevelSetDataType
TSingleData LevelSetDataType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:122
itk::RegionBasedLevelSetFunctionSharedData::FeatureImageConstPointer
typename FeatureImageType::ConstPointer FeatureImageConstPointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:93
itkListSample.h
itk::ImageRegionIteratorWithIndex
A multi-dimensional iterator templated over image type that walks pixels within a region and is speci...
Definition: itkImageRegionIteratorWithIndex.h:73
itk::RegionBasedLevelSetFunctionSharedData::ListRegionType
typename ListImageType::RegionType ListRegionType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:106
itk::RegionBasedLevelSetFunctionSharedData::InputRegionType
typename InputImageType::RegionType InputRegionType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:83
itk::RegionBasedLevelSetFunctionSharedData::LevelSetDataPointerVectorIterator
typename LevelSetDataPointerVector::iterator LevelSetDataPointerVectorIterator
Definition: itkRegionBasedLevelSetFunctionSharedData.h:125
itk::RegionBasedLevelSetFunctionSharedData::FeatureRegionType
typename FeatureImageType::RegionType FeatureRegionType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:95
itk::RegionBasedLevelSetFunctionSharedData
Helper class used to share data in the ScalarChanAndVeseLevelSetFunction.
Definition: itkRegionBasedLevelSetFunctionSharedData.h:65
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::Image::New
static Pointer New()
itk::RegionBasedLevelSetFunctionSharedData::ImageDimension
static constexpr unsigned int ImageDimension
Definition: itkRegionBasedLevelSetFunctionSharedData.h:75
itkVector.h
itkKdTreeGenerator.h
itk::RegionBasedLevelSetFunctionSharedData::FeatureImageType
TFeatureImage FeatureImageType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:91
itk::RegionBasedLevelSetFunctionSharedData::ListImagePointer
typename ListImageType::Pointer ListImagePointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:104
itk::Image
Templated n-dimensional image class.
Definition: itkImage.h:88
itk::RegionBasedLevelSetFunctionSharedData::m_LevelSetDataPointerVector
LevelSetDataPointerVector m_LevelSetDataPointerVector
Definition: itkRegionBasedLevelSetFunctionSharedData.h:172
New
static Pointer New()
itk::Image::ConstPointer
SmartPointer< const Self > ConstPointer
Definition: itkImage.h:97
itk::ImageBase::SizeType
Size< VImageDimension > SizeType
Definition: itkImageBase.h:150
itk::RegionBasedLevelSetFunctionSharedData::LevelSetDataPointer
typename LevelSetDataType::Pointer LevelSetDataPointer
Definition: itkRegionBasedLevelSetFunctionSharedData.h:123
itk::Statistics::KdTreeGenerator
This class generates a KdTree object without centroid information.
Definition: itkKdTreeGenerator.h:71
itk::RegionBasedLevelSetFunctionSharedData::ListIndexValueType
typename ListIndexType::IndexValueType ListIndexValueType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:111
itk::RegionBasedLevelSetFunctionSharedData::FeatureSpacingType
typename FeatureImageType::SpacingType FeatureSpacingType
Definition: itkRegionBasedLevelSetFunctionSharedData.h:98
itkLightObject.h
itk::RegionBasedLevelSetFunctionSharedData::SetNumberOfNeighbors
void SetNumberOfNeighbors(const unsigned int n)
Definition: itkRegionBasedLevelSetFunctionSharedData.h:143
itk::RegionBasedLevelSetFunctionSharedData::LevelSetDataPointerVector
std::vector< LevelSetDataPointer > LevelSetDataPointerVector
Definition: itkRegionBasedLevelSetFunctionSharedData.h:124
itk::SizeValueType
unsigned long SizeValueType
Definition: itkIntTypes.h:83