RTK  2.6.0
Reconstruction Toolkit
rtkTotalVariationDenoiseSequenceImageFilter.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 rtkTotalVariationDenoiseSequenceImageFilter_h
20 #define rtkTotalVariationDenoiseSequenceImageFilter_h
21 
22 #include "rtkConstantImageSource.h"
23 
24 #include <itkExtractImageFilter.h>
25 #include <itkPasteImageFilter.h>
26 #include <itkCastImageFilter.h>
27 
28 #ifdef RTK_USE_CUDA
30 #else
32 #endif
33 
34 namespace rtk
35 {
78 template <typename TImageSequence>
80  : public itk::ImageToImageFilter<TImageSequence, TImageSequence>
81 {
82 public:
83  ITK_DISALLOW_COPY_AND_MOVE(TotalVariationDenoiseSequenceImageFilter);
84 
89 
91  itkNewMacro(Self);
92 
94  itkOverrideGetNameOfClassMacro(TotalVariationDenoiseSequenceImageFilter);
95 
97  itkGetMacro(Gamma, double);
98  itkSetMacro(Gamma, double);
100 
101  itkGetMacro(NumberOfIterations, int);
102  itkSetMacro(NumberOfIterations, int);
103 
104  void
105  SetDimensionsProcessed(bool * arg);
106 
109 #ifdef RTK_USE_CUDA
110  typedef typename std::conditional<
111  std::is_same<TImageSequence, CPUImageSequenceType>::value,
112  itk::Image<typename TImageSequence::PixelType, TImageSequence::ImageDimension - 1>,
113  itk::CudaImage<typename TImageSequence::PixelType, TImageSequence::ImageDimension - 1>>::type ImageType;
114  typedef typename std::conditional<std::is_same<TImageSequence, CPUImageSequenceType>::value,
116  CudaTotalVariationDenoisingBPDQImageFilter>::type TVDenoisingFilterType;
117 #else
118  using ImageType = itk::Image<typename TImageSequence::PixelType, TImageSequence::ImageDimension - 1>;
120 #endif
125 
126 protected:
128  ~TotalVariationDenoiseSequenceImageFilter() override = default;
129 
131  void
132  GenerateData() override;
133 
134  void
135  GenerateOutputInformation() override;
136  void
137  GenerateInputRequestedRegion() override;
138 
145 
147  typename TImageSequence::RegionType m_ExtractAndPasteRegion;
148 
150  double m_Gamma{ 1. };
151  int m_NumberOfIterations{ 1 };
152  bool m_DimensionsProcessed[ImageType::ImageDimension];
153 };
154 } // namespace rtk
155 
156 
157 #ifndef ITK_MANUAL_INSTANTIATION
158 # include "rtkTotalVariationDenoiseSequenceImageFilter.hxx"
159 #endif
160 
161 #endif
Generate an n-dimensional image with constant pixel values.
Applies 3D total variation denoising to a 3D + time sequence of images.
Applies a total variation denoising, only alm_SingularValueThresholdFilterong the dimensions specifie...
#define itkSetMacro(name, type)
typename itk::Image< typename TImageSequence::PixelType, TImageSequence::ImageDimension > CPUImageSequenceType