RTK  2.7.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 #include "itkPixelTraits.h"
24 
25 namespace rtk
26 {
27 
47 template <typename TImage>
48 class ITK_TEMPLATE_EXPORT NesterovUpdateImageFilter : public itk::InPlaceImageFilter<TImage, TImage>
49 {
50 public:
51  ITK_DISALLOW_COPY_AND_MOVE(NesterovUpdateImageFilter);
52 
57 
59  using OutputImageRegionType = typename Superclass::OutputImageType::RegionType;
60 
62  itkNewMacro(Self);
63 
65  itkOverrideGetNameOfClassMacro(NesterovUpdateImageFilter);
66 
68  itkGetMacro(NumberOfIterations, int);
69  itkSetMacro(NumberOfIterations, int);
71 
72 protected:
74  ~NesterovUpdateImageFilter() override;
75 
77  void
78  BeforeThreadedGenerateData() override;
79  void
80  DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
81  void
82  AfterThreadedGenerateData() override;
84 
85  void
86  GenerateInputRequestedRegion() override;
87 
95 
96  // Internal images
97  typename TImage::Pointer m_Vk;
98  typename TImage::Pointer m_Alphak;
99 };
100 } // namespace rtk
101 
102 
103 #ifndef ITK_MANUAL_INSTANTIATION
104 # include "rtkNesterovUpdateImageFilter.hxx"
105 #endif
106 
107 #endif
Applies Nesterov&#39;s momentum technique.
itk::PixelTraits< typename TImage::PixelType >::ValueType m_TCoeff
itk::PixelTraits< typename TImage::PixelType >::ValueType m_TCoeffNext
typename TPixelType::ValueType ValueType
#define itkSetMacro(name, type)
typename Superclass::OutputImageType::RegionType OutputImageRegionType
itk::PixelTraits< typename TImage::PixelType >::ValueType m_Ratio
itk::PixelTraits< typename TImage::PixelType >::ValueType m_Sum