ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFastApproximateRankImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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#ifndef itkFastApproximateRankImageFilter_h
19#define itkFastApproximateRankImageFilter_h
20
22#include "itkRankImageFilter.h"
23
24namespace itk
25{
42
43template <typename TInputImage, typename TOutputImage>
46 TInputImage,
47 TOutputImage,
48 RankImageFilter<TInputImage, TInputImage, FlatStructuringElement<TInputImage::ImageDimension>>>
49{
50public:
51 ITK_DISALLOW_COPY_AND_MOVE(FastApproximateRankImageFilter);
52
56 TInputImage,
57 TOutputImage,
59
62
64 itkNewMacro(Self);
65
67 itkOverrideGetNameOfClassMacro(FastApproximateRankImageFilter);
68
70 using InputImageType = TInputImage;
71 using RegionType = typename TInputImage::RegionType;
72 using SizeType = typename TInputImage::SizeType;
73 using IndexType = typename TInputImage::IndexType;
74 using PixelType = typename TInputImage::PixelType;
75 using OffsetType = typename TInputImage::OffsetType;
76 using typename Superclass::FilterType;
77
79 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
81 using RadiusType = typename TInputImage::SizeType;
82
83 void
84 SetRank(float rank)
85 {
86 if (m_Rank != rank)
87 {
88 m_Rank = rank;
89 for (unsigned int i = 0; i < TInputImage::ImageDimension - 1; ++i)
90 {
91 this->m_Filters[i]->SetRank(m_Rank);
92 }
93 this->Modified();
94 }
95 }
96
97 itkGetConstMacro(Rank, float);
98
99protected:
101 {
102 // to avoid valgrind warning
103 m_Rank = 0.0;
104 this->SetRank(0.5);
105 }
106
108
109 void
110 PrintSelf(std::ostream & os, Indent indent) const override
111 {
112 Superclass::PrintSelf(os, indent);
113 os << indent << "Rank: " << m_Rank << std::endl;
114 }
115
116private:
117 float m_Rank{};
118};
119} // namespace itk
120
121#endif
MiniPipelineSeparableImageFilter< TInputImage, TOutputImage, RankImageFilter< TInputImage, TInputImage, FlatStructuringElement< TInputImage::ImageDimension > > > Superclass
~FastApproximateRankImageFilter() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition itkIndent.h:50
Rank filter of a greyscale image.
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....