RTK  2.6.0
Reconstruction Toolkit
rtkSoftThresholdTVImageFilter.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 rtkSoftThresholdTVImageFilter_h
20 #define rtkSoftThresholdTVImageFilter_h
21 
23 #include <itkImageToImageFilter.h>
24 #include <itkImage.h>
25 #include <itkVector.h>
26 #include "vnl/vnl_matrix.h"
27 #include "vnl/vnl_vector_fixed.h"
28 #include "vnl/algo/vnl_symmetric_eigensystem.h"
29 #include "rtkConfiguration.h"
30 
31 namespace rtk
32 {
44 template <typename TInputImage, typename TOutputImage = TInputImage>
45 class ITK_TEMPLATE_EXPORT SoftThresholdTVImageFilter : public itk::ImageToImageFilter<TInputImage, TOutputImage>
46 {
47 public:
48  ITK_DISALLOW_COPY_AND_MOVE(SoftThresholdTVImageFilter);
49 
55 
57  itkNewMacro(Self);
58 
60  itkOverrideGetNameOfClassMacro(SoftThresholdTVImageFilter);
61 
64  using OutputPixelType = typename TOutputImage::PixelType;
65  using InputPixelType = typename TInputImage::PixelType;
66 
68  using InputImageType = TInputImage;
69  using OutputImageType = TOutputImage;
70  using InputImagePointer = typename InputImageType::Pointer;
71  using OutputImagePointer = typename OutputImageType::Pointer;
72 
74  static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
75 
77  static constexpr unsigned int VectorDimension = InputPixelType::Dimension;
78 
80  using OutputImageRegionType = typename Superclass::OutputImageRegionType;
81 
84 
87  itkGetMacro(Threshold, float);
88  itkSetMacro(Threshold, float);
89 
90 protected:
92  ~SoftThresholdTVImageFilter() override = default;
93 
97  // void BeforeThreadedGenerateData();
98 
110  void
111  DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
112 
113  // using ImageBaseType = typename InputImageType::Superclass;
114 
115 private:
116  float m_Threshold;
118 };
119 } // namespace rtk
120 
121 #ifndef ITK_MANUAL_INSTANTIATION
122 # include "rtkSoftThresholdTVImageFilter.hxx"
123 #endif
124 
125 #endif
typename OutputImageType::Pointer OutputImagePointer
typename InputImageType::Pointer InputImagePointer
#define itkSetMacro(name, type)
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
typename TInputImage::PixelType InputPixelType
typename TOutputImage::PixelType OutputPixelType
Computes the Total Variation from a gradient input image (pixels are vectors), soft thresholds it...
unsigned int ThreadIdType
#define itkConceptMacro(name, concept)