Loading [MathJax]/extensions/tex2jax.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkRegionBasedLevelSetFunctionData.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 itkRegionBasedLevelSetFunctionData_h
19#define itkRegionBasedLevelSetFunctionData_h
20
21#include "itkLightObject.h"
22
23#include "itkVector.h"
24#include "itkListSample.h"
25#include "itkKdTreeGenerator.h"
26
29
30namespace itk
31{
47template <typename TInputImage, typename TFeatureImage>
48class ITK_TEMPLATE_EXPORT RegionBasedLevelSetFunctionData : public LightObject
49{
50public:
51 ITK_DISALLOW_COPY_AND_MOVE(RegionBasedLevelSetFunctionData);
52
57
58 static constexpr unsigned int ImageDimension = TFeatureImage::ImageDimension;
59
61 itkNewMacro(Self);
62
63 itkOverrideGetNameOfClassMacro(RegionBasedLevelSetFunctionData);
64
65 using InputImageType = TInputImage;
66 using InputImagePointer = typename InputImageType::Pointer;
67 using InputImageConstPointer = typename InputImageType::ConstPointer;
68 using InputPixelType = typename InputImageType::PixelType;
69 using InputRegionType = typename InputImageType::RegionType;
70 using InputSizeType = typename InputImageType::SizeType;
71 using InputSizeValueType = typename InputSizeType::SizeValueType;
72 using InputSpacingType = typename InputImageType::SpacingType;
73 using InputIndexType = typename InputImageType::IndexType;
74 using InputIndexValueType = typename InputIndexType::IndexValueType;
75 using InputPointType = typename InputImageType::PointType;
76
77 using FeatureImageType = TFeatureImage;
78 using FeatureImagePointer = typename FeatureImageType::Pointer;
79 using FeatureImageConstPointer = typename FeatureImageType::ConstPointer;
80 using FeaturePixelType = typename FeatureImageType::PixelType;
81 using FeatureRegionType = typename FeatureImageType::RegionType;
82 using FeatureSizeType = typename FeatureImageType::SizeType;
83 using FeatureSizeValueType = typename FeatureSizeType::SizeValueType;
84 using FeatureSpacingType = typename FeatureImageType::SpacingType;
85 using FeatureIndexType = typename FeatureImageType::IndexType;
86 using FeaturePointType = typename FeatureImageType::PointType;
87
88 // Allocates m_HeavisideFunctionOfLevelSetImage to have same origin,
89 // spacing and size as image. Also sets the m_Start and m_End indices.
90 void
92
93 // Checks if the given index lies in the domain of the current
94 // level-set function. The domain is defined by the start and end indices.
95 template <typename TIndex>
96 bool
97 VerifyInsideRegion(const TIndex & featureIndex)
98 {
99 for (unsigned int j = 0; j < ImageDimension; ++j)
100 {
101 if ((featureIndex[j] < static_cast<InputIndexValueType>(this->m_Start[j])) ||
102 (featureIndex[j] > static_cast<InputIndexValueType>(this->m_End[j])))
103 {
104 return false;
105 }
106 }
107 return true;
108 }
109
110 // Get the index into the domain of the current level-set function
111 InputIndexType
112 GetIndex(const FeatureIndexType & featureIndex);
113
114 // Get the index in the domain of the feature image
116 GetFeatureIndex(const InputIndexType & inputIndex);
117
120
124
125protected:
128};
129} // end namespace itk
130
131#ifndef ITK_MANUAL_INSTANTIATION
132# include "itkRegionBasedLevelSetFunctionData.hxx"
133#endif
134#endif
typename FeatureSizeType::SizeValueType FeatureSizeValueType
typename InputImageType::RegionType InputRegionType
typename InputImageType::ConstPointer InputImageConstPointer
InputIndexType GetIndex(const FeatureIndexType &featureIndex)
void CreateHeavisideFunctionOfLevelSetImage(const InputImageType *image)
typename FeatureImageType::SpacingType FeatureSpacingType
typename InputImageType::SpacingType InputSpacingType
typename FeatureImageType::RegionType FeatureRegionType
typename FeatureImageType::IndexType FeatureIndexType
FeatureIndexType GetFeatureIndex(const InputIndexType &inputIndex)
typename InputIndexType::IndexValueType InputIndexValueType
typename FeatureImageType::ConstPointer FeatureImageConstPointer
typename FeatureImageType::PointType FeaturePointType
typename FeatureImageType::PixelType FeaturePixelType
typename InputSizeType::SizeValueType InputSizeValueType
typename FeatureImageType::SizeType FeatureSizeType
typename FeatureImageType::Pointer FeatureImagePointer
~RegionBasedLevelSetFunctionData() override=default
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....