ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMultiphaseDenseFiniteDifferenceImageFilter.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 itkMultiphaseDenseFiniteDifferenceImageFilter_h
19#define itkMultiphaseDenseFiniteDifferenceImageFilter_h
20
24#include "itkNumericTraits.h"
26
27#include <list>
28
29namespace itk
30{
81template <typename TInputImage,
82 typename TFeatureImage,
83 typename TOutputImage,
84 typename TFunction,
85 typename TIdCell = unsigned int>
87 : public MultiphaseFiniteDifferenceImageFilter<TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell>
88{
89public:
90 ITK_DISALLOW_COPY_AND_MOVE(MultiphaseDenseFiniteDifferenceImageFilter);
91
94 using Superclass =
98
100 itkOverrideGetNameOfClassMacro(MultiphaseDenseFiniteDifferenceImageFilter);
101
104 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
105
107 using typename Superclass::InputImageType;
108 using typename Superclass::InputImagePointer;
109 using typename Superclass::InputRegionType;
110 using typename Superclass::InputSizeType;
111 using typename Superclass::InputSizeValueType;
112 using typename Superclass::InputIndexType;
113 using typename Superclass::InputIndexValueType;
114 using typename Superclass::InputPixelType;
115 using typename Superclass::InputPointType;
116 using typename Superclass::InputSpacingType;
117 using ValueType = typename InputImageType::ValueType;
118
119 using typename Superclass::FeatureImageType;
120 using typename Superclass::FeatureSizeType;
121 using typename Superclass::FeatureImagePointer;
122 using typename Superclass::FeatureRegionType;
123 using typename Superclass::FeatureSpacingType;
124 using typename Superclass::FeaturePointType;
125 using typename Superclass::FeaturePixelType;
126
127 using typename Superclass::OutputImageType;
128 using typename Superclass::OutputImagePointer;
129 using typename Superclass::OutputRegionType;
130 using typename Superclass::OutputSizeType;
132 using typename Superclass::OutputIndexType;
134 using OutputPixelType = typename OutputImageType::PixelType;
135
136 using typename Superclass::IdCellType;
137
140
143
146 using NeighborhoodIteratorType = typename FiniteDifferenceFunctionType::NeighborhoodType;
147
149 using typename Superclass::TimeStepType;
150
153
154 void
156
158 itkConceptMacro(OutputAdditiveOperatorsCheck, (Concept::AdditiveOperators<OutputPixelType>));
160
161 itkSetMacro(ReinitializeCounter, unsigned int);
162 itkGetMacro(ReinitializeCounter, unsigned int);
163
164protected:
166 {
167 this->m_ReinitializeCounter = 1;
168 // FIXME: this->m_UpdateCounter really used?
169 // this->m_UpdateCounter = 0; // FIXME: Should this be a bool ?
170 }
171
173
174 void
175 PrintSelf(std::ostream &, Indent indent) const override;
176
180 void
182
183 void
185
189 void
191
192 unsigned int m_ReinitializeCounter{}; // FIXME: Should this be a boolean ?
193 // unsigned int m_UpdateCounter; // FIXME: Should this be a boolean ?
194
195private:
198 void
200
205 CalculateChange() override;
206
208 std::vector<InputImagePointer> m_UpdateBuffers{};
209};
210} // end namespace itk
211
212#ifndef ITK_MANUAL_INSTANTIATION
213# include "itkMultiphaseDenseFiniteDifferenceImageFilter.hxx"
214#endif
215
216#endif
Binarize an input image by thresholding.
Control indentation during Print() invocation.
Definition itkIndent.h:50
NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< InputImageType > FaceCalculatorType
void PrintSelf(std::ostream &, Indent indent) const override
~MultiphaseDenseFiniteDifferenceImageFilter() override=default
void ApplyUpdate(TimeStepType dt) override
BinaryThresholdImageFilter< InputImageType, InputImageType > ThresholdFilterType
MultiphaseFiniteDifferenceImageFilter< TInputImage, TFeatureImage, TOutputImage, TFunction, TIdCell > Superclass
SignedMaurerDistanceMapImageFilter< InputImageType, InputImageType > MaurerType
typename FiniteDifferenceFunctionType::NeighborhoodType NeighborhoodIteratorType
typename FiniteDifferenceFunctionType::TimeStepType TimeStepType
This filter calculates the Euclidean distance transform of a binary image in linear time for arbitrar...
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Splits an image into a main region and several "face" regions which are used to handle computations o...