ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkVectorGradientNDAnisotropicDiffusionFunction.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkVectorGradientNDAnisotropicDiffusionFunction_h
19 #define itkVectorGradientNDAnisotropicDiffusionFunction_h
20 
24 #include "itkDerivativeOperator.h"
25 
26 namespace itk
27 {
43 template< typename TImage >
45  public VectorAnisotropicDiffusionFunction< TImage >
46 {
47 public:
53 
55  itkNewMacro(Self);
56 
60 
62  typedef typename Superclass::ImageType ImageType;
63  typedef typename Superclass::PixelType PixelType;
68 
70  itkStaticConstMacro(ImageDimension, unsigned int,
71  Superclass::ImageDimension);
72  itkStaticConstMacro(VectorDimension, unsigned int,
73  Superclass::VectorDimension);
75 
77  typedef typename PixelType::ValueType ScalarValueType;
78 
80  virtual PixelType ComputeUpdate(const NeighborhoodType & neighborhood,
81  void *globalData,
82  const FloatOffsetType & offset = FloatOffsetType(0.0)
83  ) ITK_OVERRIDE;
84 
86  virtual void InitializeIteration() ITK_OVERRIDE
87  {
88  m_K = this->GetAverageGradientMagnitudeSquared() * this->GetConductanceParameter()
89  * this->GetConductanceParameter() * -2.0f;
90  }
91 
92 protected:
95 
96 private:
97  ITK_DISALLOW_COPY_AND_ASSIGN(VectorGradientNDAnisotropicDiffusionFunction);
98 
101 
103  std::slice x_slice[ImageDimension];
104  std::slice xa_slice[ImageDimension][ImageDimension];
105  std::slice xd_slice[ImageDimension][ImageDimension];
106 
109  itkGetStaticConstMacro(ImageDimension) > dx_op;
110 
113 
114  static double m_MIN_NORM;
115 
116  SizeValueType m_Stride[ImageDimension];
118 };
119 } // end namespace itk
120 
121 #ifndef ITK_MANUAL_INSTANTIATION
122 #include "itkVectorGradientNDAnisotropicDiffusionFunction.hxx"
123 #endif
124 
125 #endif
Light weight base class for most itk classes.
A NeighborhoodOperator for taking an n-th order derivative at a pixel.
ConstNeighborhoodIterator< TImage >::RadiusType RadiusType
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
unsigned long SizeValueType
Definition: itkIntTypes.h:143
A templated class holding a n-Dimensional vector.
Definition: itkVector.h:62
DerivativeOperator< ScalarValueType, itkGetStaticConstMacro(ImageDimension) > dx_op