ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkSparseFieldFourthOrderLevelSetImageFilter.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 itkSparseFieldFourthOrderLevelSetImageFilter_h
19#define itkSparseFieldFourthOrderLevelSetImageFilter_h
20
25#include <cmath>
26
27namespace itk
28{
37template <typename TImageType>
38class ITK_TEMPLATE_EXPORT NormalBandNode
39{
40public:
42 using LevelSetImageType = TImageType;
43
45 using NodeValueType = typename LevelSetImageType::PixelType;
46
48 using IndexType = typename LevelSetImageType::IndexType;
49
52
55
58
61
64 NodeDataType m_ManifoldNormal[TImageType::ImageDimension];
65
67 NodeDataType m_Flux[TImageType::ImageDimension];
68
72
76
79
83};
84
152template <typename TInputImage, typename TOutputImage>
154 : public SparseFieldLevelSetImageFilter<TInputImage, TOutputImage>
155{
156public:
157 ITK_DISALLOW_COPY_AND_MOVE(SparseFieldFourthOrderLevelSetImageFilter);
158
164
166 itkOverrideGetNameOfClassMacro(SparseFieldFourthOrderLevelSetImageFilter);
167
169 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
170
172 using typename Superclass::OutputImageType;
173 using typename Superclass::ValueType;
174 using typename Superclass::IndexType;
175 using typename Superclass::LayerType;
176 using typename Superclass::RadiusType;
178
182
185
188
191
194
197
199 // using RadiusType = typename NormalVectorFunctionType::RadiusType;
200
203
204 itkGetConstReferenceMacro(MaxRefitIteration, unsigned int);
205 itkSetMacro(MaxRefitIteration, unsigned int);
206 itkGetConstReferenceMacro(MaxNormalIteration, unsigned int);
207 itkSetMacro(MaxNormalIteration, unsigned int);
208 itkGetConstReferenceMacro(CurvatureBandWidth, ValueType);
209 itkSetMacro(CurvatureBandWidth, ValueType);
210 itkGetConstReferenceMacro(RMSChangeNormalProcessTrigger, ValueType);
211 itkSetMacro(RMSChangeNormalProcessTrigger, ValueType);
212 itkGetConstReferenceMacro(NormalProcessType, int);
213 itkSetMacro(NormalProcessType, int);
214 itkGetConstReferenceMacro(NormalProcessConductance, ValueType);
215 itkSetMacro(NormalProcessConductance, ValueType);
216 itkSetMacro(NormalProcessUnsharpFlag, bool);
217 itkGetConstReferenceMacro(NormalProcessUnsharpFlag, bool);
218 itkBooleanMacro(NormalProcessUnsharpFlag);
219 itkSetMacro(NormalProcessUnsharpWeight, ValueType);
220 itkGetConstReferenceMacro(NormalProcessUnsharpWeight, ValueType);
221
224 void
226
230 unsigned int
232 {
233 return static_cast<int>(std::ceil(m_CurvatureBandWidth + Self::ImageDimension));
234 }
235
238 void
239 SetNumberOfLayers(const unsigned int n) override
240 {
241 const unsigned int nm = std::max(this->GetMinimumNumberOfLayers(), n);
242
243 if (nm != this->GetNumberOfLayers())
244 {
246 this->Modified();
247 }
248 }
249
252 void
254 {
256 const ValueType rmschange = this->GetRMSChange();
257
258 if ((this->GetElapsedIterations() == 0) || (m_RefitIteration == m_MaxRefitIteration) ||
259 (rmschange <= m_RMSChangeNormalProcessTrigger) || (this->ActiveLayerCheckBand()))
260 {
261 if ((this->GetElapsedIterations() != 0) && (rmschange <= m_RMSChangeNormalProcessTrigger) &&
262 (m_RefitIteration <= 1))
263 {
264 m_ConvergenceFlag = true;
265 }
266
269 }
270
272 }
273
274 itkConceptMacro(OutputHasNumericTraitsCheck, (Concept::HasNumericTraits<ValueType>));
275
276protected:
279 void
280 PrintSelf(std::ostream & os, Indent indent) const override;
281
286
290 void
291 ComputeCurvatureTarget(const OutputImageType * distanceImage, SparseImageType * sparseImage) const;
292
294 void
296
301 bool
303
304private:
307 unsigned int m_RefitIteration{};
308
312 unsigned int m_MaxRefitIteration{};
313
316 unsigned int m_MaxNormalIteration{};
317
322
326
330
336
340
344
348
352
355 static const ValueType m_DimConst;
356};
357} // end namespace itk
358
359#ifndef ITK_MANUAL_INSTANTIATION
360# include "itkSparseFieldFourthOrderLevelSetImageFilter.hxx"
361#endif
362
363#endif
virtual const double & GetRMSChange() const
virtual const IdentifierType & GetElapsedIterations() const
This class implements the filter for computing the normal vectors from a scalar implicit function (i....
Control indentation during Print() invocation.
Definition itkIndent.h:50
This class extends the LevelSetFunction class by adding a grow term based on a target curvature store...
Defines iteration of a local N-dimensional neighborhood of pixels across an itk::Image.
This is a data storage class that can is used as the node type for the SparseImage class.
Vector< NodeValueType, TImageType::ImageDimension > NodeDataType
NodeDataType m_ManifoldNormal[OutputImageType::ImageDimension]
typename LevelSetImageType::PixelType NodeValueType
typename LevelSetImageType::IndexType IndexType
This class defines all the necessary functionality for performing isotropic and anisotropic diffusion...
virtual void Modified() const
Implements transparent reference counting.
void PrintSelf(std::ostream &os, Indent indent) const override
~SparseFieldFourthOrderLevelSetImageFilter() override=default
void SetLevelSetFunction(LevelSetFunctionType *lsf)
ValueType ComputeCurvatureFromSparseImageNeighborhood(SparseImageIteratorType &it) const
SparseFieldLevelSetImageFilter< TInputImage, TOutputImage > Superclass
ImplicitManifoldNormalVectorFilter< OutputImageType, SparseImageType > NormalVectorFilterType
void ComputeCurvatureTarget(const OutputImageType *distanceImage, SparseImageType *sparseImage) const
LevelSetFunctionWithRefitTerm< OutputImageType, SparseImageType > LevelSetFunctionType
NormalVectorDiffusionFunction< SparseImageType > NormalVectorFunctionType
virtual void SetNumberOfLayers(unsigned int _arg)
typename FiniteDifferenceFunctionType::NeighborhoodScalesType NeighborhoodScalesType
virtual unsigned int GetNumberOfLayers() const
typename FiniteDifferenceFunctionType::RadiusType RadiusType
A storage type for sparse image data.
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86