RTK  2.6.0
Reconstruction Toolkit
rtkGetNewtonUpdateImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright RTK 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  * 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 rtkGetNewtonUpdateImageFilter_h
19 #define rtkGetNewtonUpdateImageFilter_h
20 
21 #include "itkImageToImageFilter.h"
22 #include "rtkMacro.h"
23 
24 namespace rtk
25 {
41 template <class TGradient,
42  class THessian = itk::Image<itk::Vector<typename TGradient::PixelType::ValueType,
43  TGradient::PixelType::Dimension * TGradient::PixelType::Dimension>,
44  TGradient::ImageDimension>>
45 class ITK_TEMPLATE_EXPORT GetNewtonUpdateImageFilter : public itk::ImageToImageFilter<TGradient, TGradient>
46 {
47 public:
48  ITK_DISALLOW_COPY_AND_MOVE(GetNewtonUpdateImageFilter);
49 
54 
56  itkNewMacro(Self);
57 
59  itkOverrideGetNameOfClassMacro(GetNewtonUpdateImageFilter);
60 
62  static constexpr unsigned int nChannels = TGradient::PixelType::Dimension;
63 
65  using dataType = typename TGradient::PixelType::ValueType;
66 
68  void
69  SetInputGradient(const TGradient * gradient);
70  void
71  SetInputHessian(const THessian * hessian);
73 
74 protected:
76  ~GetNewtonUpdateImageFilter() override = default;
77 
78  void
79  GenerateInputRequestedRegion() override;
80 
82  void
83  DynamicThreadedGenerateData(const typename TGradient::RegionType & outputRegionForThread) override;
84 
86  typename TGradient::ConstPointer
87  GetInputGradient();
88  typename THessian::ConstPointer
89  GetInputHessian();
90 };
91 } // namespace rtk
93 
94 
95 #ifndef ITK_MANUAL_INSTANTIATION
96 # include "rtkGetNewtonUpdateImageFilter.hxx"
97 #endif
98 
99 #endif
typename TGradient::PixelType::ValueType dataType
Computes update from gradient and Hessian in Newton&#39;s method.