RTK  2.6.0
Reconstruction Toolkit
rtkDivergenceOfGradientConjugateGradientOperator.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 rtkDivergenceOfGradientConjugateGradientOperator_h
20 #define rtkDivergenceOfGradientConjugateGradientOperator_h
21 
23 
26 
27 namespace rtk
28 {
37 template <class TInputImage>
38 class ITK_TEMPLATE_EXPORT DivergenceOfGradientConjugateGradientOperator : public ConjugateGradientOperator<TInputImage>
39 {
40 public:
41  ITK_DISALLOW_COPY_AND_MOVE(DivergenceOfGradientConjugateGradientOperator);
42 
44  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
45 
47  using InputImageType = TInputImage;
48 
54 
56  itkNewMacro(Self);
57 
59  itkOverrideGetNameOfClassMacro(DivergenceOfGradientConjugateGradientOperator);
60 
62  using InputPixelType = typename InputImageType::PixelType;
63  using InputImageRegionType = typename InputImageType::RegionType;
64  using InputSizeType = typename InputImageType::SizeType;
65 
70 
71  void
72  SetDimensionsProcessed(bool * arg);
73 
74 protected:
77 
78  void
79  GenerateData() override;
80 
81  void
82  GenerateOutputInformation() override;
83 
87 
88  bool m_DimensionsProcessed[TInputImage::ImageDimension];
89 };
90 
91 } // namespace rtk
92 
93 #ifndef ITK_MANUAL_INSTANTIATION
94 # include "rtkDivergenceOfGradientConjugateGradientOperator.hxx"
95 #endif
96 
97 #endif //__rtkDivergenceOfGradientConjugateGradientOperator__
Computes the gradient of an image using forward difference.
Computes the backward differences divergence (adjoint of the forward differences gradient) of the inp...
Computes the divergence of the gradient of an image. To be used with the ConjugateGradientImageFilter...