ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkZeroCrossingImageFilter.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 itkZeroCrossingImageFilter_h
19#define itkZeroCrossingImageFilter_h
20
22namespace itk
23{
63template <typename TInputImage, typename TOutputImage>
64class ITK_TEMPLATE_EXPORT ZeroCrossingImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
65{
66public:
67 ITK_DISALLOW_COPY_AND_MOVE(ZeroCrossingImageFilter);
68
72
74 using InputImageType = TInputImage;
75 using OutputImageType = TOutputImage;
76
80
82 using InputImagePixelType = typename TInputImage::PixelType;
83 using OutputImagePixelType = typename TOutputImage::PixelType;
84
86 itkNewMacro(Self);
87
89 using OutputImageRegionType = typename TOutputImage::RegionType;
90
92 itkOverrideGetNameOfClassMacro(ZeroCrossingImageFilter);
93
95 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
96 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
97
106 void
108
111 itkSetMacro(ForegroundValue, OutputImagePixelType);
112 itkGetConstMacro(ForegroundValue, OutputImagePixelType);
116 itkSetMacro(BackgroundValue, OutputImagePixelType);
117 itkGetConstMacro(BackgroundValue, OutputImagePixelType);
123
124protected:
126 ~ZeroCrossingImageFilter() override = default;
127 void
128 PrintSelf(std::ostream & os, Indent indent) const override;
129
132
144 void
145 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
146};
147} // end of namespace itk
148
149#ifndef ITK_MANUAL_INSTANTIATION
150# include "itkZeroCrossingImageFilter.hxx"
151#endif
152
153#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
ImageToImageFilter< TInputImage, TOutputImage > Superclass
typename TOutputImage::PixelType OutputImagePixelType
SmartPointer< const Self > ConstPointer
typename TInputImage::PixelType InputImagePixelType
void PrintSelf(std::ostream &os, Indent indent) const override
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
~ZeroCrossingImageFilter() override=default
typename TOutputImage::RegionType OutputImageRegionType
void GenerateInputRequestedRegion() override
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....