ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFrequencyBandImageFilter.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 itkFrequencyBandImageFilter_h
19#define itkFrequencyBandImageFilter_h
20
22
23namespace itk
24{
52template <typename TImageType, typename TFrequencyIterator = FrequencyFFTLayoutImageRegionIteratorWithIndex<TImageType>>
53class ITK_TEMPLATE_EXPORT FrequencyBandImageFilter : public UnaryFrequencyDomainFilter<TImageType, TFrequencyIterator>
54{
55public:
56 ITK_DISALLOW_COPY_AND_MOVE(FrequencyBandImageFilter);
57
63
65 itkNewMacro(Self);
66
68 itkOverrideGetNameOfClassMacro(FrequencyBandImageFilter);
69
71 using ImageType = TImageType;
72 using ImagePointer = typename ImageType::Pointer;
73 using ImageConstPointer = typename ImageType::ConstPointer;
74 using IndexType = typename TImageType::IndexType;
75 using PixelType = typename TImageType::PixelType;
76
78 using ImageRegionType = typename TImageType::RegionType;
79
80 static constexpr unsigned int ImageDimension = TImageType::ImageDimension;
81
83 using FrequencyIteratorType = TFrequencyIterator;
84 using FrequencyValueType = typename FrequencyIteratorType::FrequencyValueType;
85
86 /****** Frequency Threshold Getters/Setters *****/
87
89 itkGetConstReferenceMacro(LowFrequencyThreshold, FrequencyValueType);
90 itkSetMacro(LowFrequencyThreshold, FrequencyValueType);
91
96 void
98
101 itkGetConstReferenceMacro(HighFrequencyThreshold, FrequencyValueType);
102 itkSetMacro(HighFrequencyThreshold, FrequencyValueType);
103 void
113 void
115
123 void
125 const FrequencyValueType & freqHighInRadians);
126
130 itkSetMacro(PassLowFrequencyThreshold, bool);
131 itkGetConstReferenceMacro(PassLowFrequencyThreshold, bool);
132 itkBooleanMacro(PassLowFrequencyThreshold);
137 itkSetMacro(PassHighFrequencyThreshold, bool);
138 itkGetConstReferenceMacro(PassHighFrequencyThreshold, bool);
139 itkBooleanMacro(PassHighFrequencyThreshold);
143 itkSetMacro(PassBand, bool);
144 itkGetConstReferenceMacro(PassBand, bool);
145 itkBooleanMacro(PassBand);
156 void
157 SetPassBand(const bool passLowThreshold, const bool passHighThreshold);
158
168 void
169 SetStopBand(const bool passLowThreshold, const bool passHighThreshold);
170
174 itkSetMacro(RadialBand, bool);
175 itkGetConstReferenceMacro(RadialBand, bool);
176 itkBooleanMacro(RadialBand);
181 itkSetMacro(PassNegativeLowFrequencyThreshold, bool);
182 itkGetConstReferenceMacro(PassNegativeLowFrequencyThreshold, bool);
183 itkBooleanMacro(PassNegativeLowFrequencyThreshold);
188 itkSetMacro(PassNegativeHighFrequencyThreshold, bool);
189 itkGetConstReferenceMacro(PassNegativeHighFrequencyThreshold, bool);
190 itkBooleanMacro(PassNegativeHighFrequencyThreshold);
192
193protected:
195 void
196 PrintSelf(std::ostream & os, Indent indent) const override;
197
198 /* Checks the logic of FrequencyThresholds. */
199 void
200 VerifyPreconditions() const override;
201
202 /* This is the box functor, which implements the filter's behavior. */
203 void
205
206private:
208
211
212 bool m_PassBand{ true };
215 bool m_RadialBand{ true };
218};
219} // end namespace itk
220
221#ifndef ITK_MANUAL_INSTANTIATION
222# include "itkFrequencyBandImageFilter.hxx"
223#endif
224
225#endif
void SetFrequencyThresholds(const FrequencyValueType &freqLow, const FrequencyValueType &freqHigh)
typename ImageType::Pointer ImagePointer
typename TImageType::RegionType ImageRegionType
void SetPassBand(const bool passLowThreshold, const bool passHighThreshold)
void BandPass(FrequencyIteratorType &freqIt)
void PrintSelf(std::ostream &os, Indent indent) const override
typename FrequencyIteratorType::FrequencyValueType FrequencyValueType
std::function< void(const ImageRegionType &)> m_DynamicThreadedGenerateDataFunction
static constexpr unsigned int ImageDimension
typename ImageType::ConstPointer ImageConstPointer
void SetFrequencyThresholdsInRadians(const FrequencyValueType &freqLowInRadians, const FrequencyValueType &freqHighInRadians)
typename TImageType::PixelType PixelType
void SetHighFrequencyThresholdInRadians(const FrequencyValueType &freqHighInRadians)
void SetLowFrequencyThresholdInRadians(const FrequencyValueType &freqLowInRadians)
typename TImageType::IndexType IndexType
UnaryFrequencyDomainFilter< TImageType, TFrequencyIterator > Superclass
void SetStopBand(const bool passLowThreshold, const bool passHighThreshold)
void VerifyPreconditions() const override
Verifies that the process object has been configured correctly, that all required inputs are set,...
SmartPointer< const Self > ConstPointer
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....