ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkGPUGradientNDAnisotropicDiffusionFunction.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 itkGPUGradientNDAnisotropicDiffusionFunction_h
19 #define itkGPUGradientNDAnisotropicDiffusionFunction_h
20 
24 #include "itkDerivativeOperator.h"
25 
26 namespace itk
27 {
56 itkGPUKernelClassMacro(GPUGradientNDAnisotropicDiffusionFunctionKernel);
57 
58 template< typename TImage >
59 class ITK_TEMPLATE_EXPORT GPUGradientNDAnisotropicDiffusionFunction :
61 {
62 public:
63  ITK_DISALLOW_COPY_AND_ASSIGN(GPUGradientNDAnisotropicDiffusionFunction);
64 
70 
72  itkNewMacro(Self);
73 
77 
79  using ImageType = typename Superclass::ImageType;
80  using PixelType = typename Superclass::PixelType;
86 
88 
90  static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
91 
93  itkGetOpenCLSourceFromKernelMacro(GPUGradientNDAnisotropicDiffusionFunctionKernel);
94 
96  virtual void GPUComputeUpdate( const typename TImage::Pointer output, typename TImage::Pointer buffer,
97  void *globalData ) override;
98 
100  void InitializeIteration() override
101  {
102  m_K = static_cast< PixelType >( this->GetAverageGradientMagnitudeSquared()
103  * this->GetConductanceParameter() * this->GetConductanceParameter() * -2.0f );
104  }
105 
106 protected:
109 
112 
114  std::slice x_slice[ImageDimension];
115  std::slice xa_slice[ImageDimension][ImageDimension];
116  std::slice xd_slice[ImageDimension][ImageDimension];
117 
120 
123 
125  NeighborhoodSizeValueType m_Stride[ImageDimension];
126 
127  static double m_MIN_NORM;
128 };
129 } // end namespace itk
130 
131 #ifndef ITK_MANUAL_INSTANTIATION
132 #include "itkGPUGradientNDAnisotropicDiffusionFunction.hxx"
133 #endif
134 
135 #endif
typename Superclass::NeighborhoodType NeighborhoodType
Light weight base class for most itk classes.
DerivativeOperator< PixelType, Self::ImageDimension > m_DerivativeOperator
unsigned long SizeValueType
Definition: itkIntTypes.h:83
A NeighborhoodOperator for taking an n-th order derivative at a pixel.
itkGPUKernelClassMacro(GPUImageOpsKernel)
typename Superclass::NeighborhoodType NeighborhoodType
typename Superclass::FloatOffsetType FloatOffsetType
typename Superclass::FloatOffsetType FloatOffsetType