RTK  2.6.0
Reconstruction Toolkit
rtkNesterovUpdateImageFilter.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 
19 #ifndef rtkNesterovUpdateImageFilter_h
20 #define rtkNesterovUpdateImageFilter_h
21 
22 #include "itkInPlaceImageFilter.h"
23 
24 namespace rtk
25 {
26 
41 template <typename TImage>
42 class ITK_TEMPLATE_EXPORT NesterovUpdateImageFilter : public itk::InPlaceImageFilter<TImage, TImage>
43 {
44 public:
45  ITK_DISALLOW_COPY_AND_MOVE(NesterovUpdateImageFilter);
46 
51 
53  using OutputImageRegionType = typename Superclass::OutputImageType::RegionType;
54 
56  itkNewMacro(Self);
57 
59  itkOverrideGetNameOfClassMacro(NesterovUpdateImageFilter);
60 
62  itkGetMacro(NumberOfIterations, int);
63  itkSetMacro(NumberOfIterations, int);
65 
66 protected:
68  ~NesterovUpdateImageFilter() override;
69 
71  void
72  BeforeThreadedGenerateData() override;
73  void
74  DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
75  void
76  AfterThreadedGenerateData() override;
78 
79  void
80  GenerateInputRequestedRegion() override;
81 
85  typename TImage::PixelType::ValueType m_TCoeff;
86  typename TImage::PixelType::ValueType m_TCoeffNext;
87  typename TImage::PixelType::ValueType m_Sum;
88  typename TImage::PixelType::ValueType m_Ratio;
89 
90  // Internal images
91  typename TImage::Pointer m_Vk;
92  typename TImage::Pointer m_Alphak;
93 };
94 } // namespace rtk
95 
96 
97 #ifndef ITK_MANUAL_INSTANTIATION
98 # include "rtkNesterovUpdateImageFilter.hxx"
99 #endif
100 
101 #endif
TImage::PixelType::ValueType m_TCoeffNext
TImage::PixelType::ValueType m_TCoeff
Applies Nesterov&#39;s momentum technique.
#define itkSetMacro(name, type)
typename OutputImageType::RegionType OutputImageRegionType
TImage::PixelType::ValueType m_Ratio