ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkShotNoiseImageFilter.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 itkShotNoiseImageFilter_h
19#define itkShotNoiseImageFilter_h
20
22
23namespace itk
24{
25
93template <class TInputImage, class TOutputImage = TInputImage>
94class ITK_TEMPLATE_EXPORT ShotNoiseImageFilter : public NoiseBaseImageFilter<TInputImage, TOutputImage>
95{
96public:
97 ITK_DISALLOW_COPY_AND_MOVE(ShotNoiseImageFilter);
98
104
106 itkNewMacro(Self);
107
109 itkOverrideGetNameOfClassMacro(ShotNoiseImageFilter);
110
112 using typename Superclass::OutputImageType;
113 using typename Superclass::OutputImagePointer;
116
118 using InputImageType = TInputImage;
119 using InputImagePointer = typename InputImageType::Pointer;
120 using InputImageConstPointer = typename InputImageType::ConstPointer;
121 using InputImageRegionType = typename InputImageType::RegionType;
122 using InputImagePixelType = typename InputImageType::PixelType;
123
129 itkGetConstMacro(Scale, double);
130 itkSetMacro(Scale, double);
132 itkConceptMacro(InputConvertibleToOutputCheck,
134
135protected:
137 ~ShotNoiseImageFilter() override = default;
138
139 void
140 PrintSelf(std::ostream & os, Indent indent) const override;
141
142 void
143 ThreadedGenerateData(const OutputImageRegionType & outputRegionForThread, ThreadIdType threadId) override;
144
145
146private:
147 double m_Scale{ 1.0 };
148};
149} // end namespace itk
150
151#ifndef ITK_MANUAL_INSTANTIATION
152# include "itkShotNoiseImageFilter.hxx"
153#endif
154
155#endif
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
typename OutputImageType::Pointer OutputImagePointer
typename OutputImageType::RegionType OutputImageRegionType
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename OutputImageType::PixelType OutputImagePixelType
SmartPointer< const Self > ConstPointer
void PrintSelf(std::ostream &os, Indent indent) const override
void ThreadedGenerateData(const OutputImageRegionType &outputRegionForThread, ThreadIdType threadId) override
~ShotNoiseImageFilter() override=default
typename InputImageType::ConstPointer InputImageConstPointer
NoiseBaseImageFilter< TInputImage, TOutputImage > Superclass
typename InputImageType::RegionType InputImageRegionType
typename InputImageType::Pointer InputImagePointer
typename InputImageType::PixelType InputImagePixelType
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned int ThreadIdType