RTK  2.6.0
Reconstruction Toolkit
rtkSingularValueThresholdImageFilter.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 rtkSingularValueThresholdImageFilter_h
20 #define rtkSingularValueThresholdImageFilter_h
21 
22 #include <itkInPlaceImageFilter.h>
23 #include <itkVector.h>
24 
26 
27 namespace rtk
28 {
49 template <typename TInputImage, typename TRealType = float, typename TOutputImage = TInputImage>
50 class ITK_TEMPLATE_EXPORT SingularValueThresholdImageFilter : public itk::InPlaceImageFilter<TInputImage, TOutputImage>
51 {
52 public:
53  ITK_DISALLOW_COPY_AND_MOVE(SingularValueThresholdImageFilter);
54 
60 
62  itkNewMacro(Self);
63 
65  itkOverrideGetNameOfClassMacro(SingularValueThresholdImageFilter);
66 
69  using OutputPixelType = typename TOutputImage::PixelType;
70  using InputPixelType = typename TInputImage::PixelType;
71 
73  using InputImageType = TInputImage;
74  using OutputImageType = TOutputImage;
75  using InputImagePointer = typename InputImageType::Pointer;
76  using OutputImagePointer = typename OutputImageType::Pointer;
77 
79  static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
80 
82  static constexpr unsigned int VectorDimension = InputPixelType::Dimension;
83 
85  using RealType = TRealType;
88 
90  using OutputImageRegionType = typename Superclass::OutputImageRegionType;
91 
94  itkConceptMacro(RealTypeHasNumericTraitsCheck, (itk::Concept::HasNumericTraits<RealType>));
95 
98  itkGetMacro(Threshold, TRealType);
99  itkSetMacro(Threshold, TRealType);
100 
101 protected:
103  ~SingularValueThresholdImageFilter() override = default;
104 
105  void
106  ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread, itk::ThreadIdType threadId) override;
107 
110  GetImageRegionSplitter() const override;
112 
113 private:
114  TRealType m_Threshold;
115 };
116 } // namespace rtk
117 
118 #ifndef ITK_MANUAL_INSTANTIATION
119 # include "rtkSingularValueThresholdImageFilter.hxx"
120 #endif
121 
122 #endif
typename OutputImageType::Pointer OutputImagePointer
TInputImage InputImageType
#define itkSetMacro(name, type)
typename InputImageType::Pointer InputImagePointer
itk::ImageRegionSplitterDirection::Pointer m_Splitter
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
Performs thresholding on the singular values.
unsigned int ThreadIdType
#define itkConceptMacro(name, concept)