ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkScalarRegionBasedLevelSetFunction.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 itkScalarRegionBasedLevelSetFunction_h
19#define itkScalarRegionBasedLevelSetFunction_h
20
25
26namespace itk
27{
46template <typename TInputImage, typename TFeatureImage, typename TSharedData>
47class ITK_TEMPLATE_EXPORT ScalarRegionBasedLevelSetFunction
48 : public RegionBasedLevelSetFunction<TInputImage, TFeatureImage, TSharedData>
49{
50public:
51 ITK_DISALLOW_COPY_AND_MOVE(ScalarRegionBasedLevelSetFunction);
52
57
58 // itkNewMacro() is not provided since this is an abstract class.
59
61 itkOverrideGetNameOfClassMacro(ScalarRegionBasedLevelSetFunction);
62
63 static constexpr unsigned int ImageDimension = TFeatureImage::ImageDimension;
64
65 using typename Superclass::InputImageType;
67 using typename Superclass::InputImagePointer;
68 using typename Superclass::InputPixelType;
69 using typename Superclass::InputIndexType;
71 using typename Superclass::InputSizeType;
72 using typename Superclass::InputSizeValueType;
73 using typename Superclass::InputRegionType;
74 using typename Superclass::InputPointType;
75
76 using typename Superclass::FeatureImageType;
77 using FeatureImageConstPointer = typename FeatureImageType::ConstPointer;
78 using typename Superclass::FeaturePixelType;
79 using typename Superclass::FeatureIndexType;
80 using typename Superclass::FeatureOffsetType;
81
82 using typename Superclass::ScalarValueType;
83 using typename Superclass::NeighborhoodType;
84 using typename Superclass::FloatOffsetType;
85 using typename Superclass::RadiusType;
86 using typename Superclass::TimeStepType;
87 using typename Superclass::GlobalDataStruct;
88 using typename Superclass::PixelType;
89 using typename Superclass::VectorType;
90
91 using typename Superclass::SharedDataType;
92 using typename Superclass::SharedDataPointer;
93
98
99 using ListPixelType = std::list<unsigned int>;
100 using ListPixelConstIterator = typename ListPixelType::const_iterator;
101 using ListPixelIterator = typename ListPixelType::iterator;
103
108 void
109 UpdatePixel(const unsigned int idx,
111 InputPixelType & newValue,
112 bool & status);
113
114protected:
119
123 ComputeOverlapParameters(const FeatureIndexType & featIndex, ScalarValueType & product) override;
124
128 virtual void
129 UpdateSharedDataInsideParameters(const unsigned int & iId,
130 const FeaturePixelType & iVal,
131 const ScalarValueType & iChange) = 0;
132
133 virtual void
134 UpdateSharedDataOutsideParameters(const unsigned int & iId,
135 const FeaturePixelType & iVal,
136 const ScalarValueType & iChange) = 0;
137};
138} // namespace itk
139
140#ifndef ITK_MANUAL_INSTANTIATION
141# include "itkScalarRegionBasedLevelSetFunction.hxx"
142#endif
143
144#endif
ConstNeighborhoodIterator< TImageType, DefaultBoundaryConditionType > NeighborhoodType
Vector< float, Self::ImageDimension > FloatOffsetType
typename ImageType::PixelType PixelType
typename ConstNeighborhoodIterator< TImageType >::RadiusType RadiusType
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 a region of pixels.
A multi-dimensional iterator templated over image type that walks pixels within a region and is speci...
Templated n-dimensional image class.
Definition itkImage.h:89
Defines iteration of a local N-dimensional neighborhood of pixels across an itk::Image.
RegionBasedLevelSetFunction< TInputImage, TFeatureImage, TSharedData > Superclass
void UpdatePixel(const unsigned int idx, NeighborhoodIterator< TInputImage > &iterator, InputPixelType &newValue, bool &status)
ImageRegionConstIteratorWithIndex< InputImageType > ConstImageIteratorType
ImageRegionConstIterator< FeatureImageType > ConstFeatureIteratorType
ImageRegionIteratorWithIndex< FeatureImageType > FeatureImageIteratorType
virtual void UpdateSharedDataInsideParameters(const unsigned int &iId, const FeaturePixelType &iVal, const ScalarValueType &iChange)=0
virtual void UpdateSharedDataOutsideParameters(const unsigned int &iId, const FeaturePixelType &iVal, const ScalarValueType &iChange)=0
typename FeatureImageType::ConstPointer FeatureImageConstPointer
ImageRegionIteratorWithIndex< InputImageType > ImageIteratorType
ScalarValueType ComputeOverlapParameters(const FeatureIndexType &featIndex, ScalarValueType &product) override
~ScalarRegionBasedLevelSetFunction() override=default
typename ListPixelType::const_iterator ListPixelConstIterator
Image< ListPixelType, Self::ImageDimension > ListImageType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....