ITK  5.1.0
Insight Toolkit
itkBoxSigmaImageFilter.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  * http://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 itkBoxSigmaImageFilter_h
19 #define itkBoxSigmaImageFilter_h
20 
21 #include "itkBoxImageFilter.h"
22 
23 namespace itk
24 {
40 template <typename TInputImage, typename TOutputImage = TInputImage>
41 class ITK_TEMPLATE_EXPORT BoxSigmaImageFilter : public BoxImageFilter<TInputImage, TOutputImage>
42 {
43 public:
44  ITK_DISALLOW_COPY_AND_ASSIGN(BoxSigmaImageFilter);
45 
51 
53  itkNewMacro(Self);
54 
56  itkTypeMacro(BoxSigmaImageFilter, BoxImageFilter);
57 
59  using InputImageType = TInputImage;
60  using OutputImageType = TOutputImage;
62  using SizeType = typename TInputImage::SizeType;
64  using PixelType = typename TInputImage::PixelType;
65  using OffsetType = typename TInputImage::OffsetType;
66  using OutputImageRegionType = typename Superclass::OutputImageRegionType;
67  using OutputPixelType = typename TOutputImage::PixelType;
68 
70  static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
71  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
72 
73 #ifdef ITK_USE_CONCEPT_CHECKING
74  // Begin concept checking
76 
77  // End concept checking
78 #endif
79 
80 protected:
82  ~BoxSigmaImageFilter() override = default;
83 
85  void
86  DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
87 
88 }; // end of class
89 } // end namespace itk
90 
91 #ifndef ITK_MANUAL_INSTANTIATION
92 # include "itkBoxSigmaImageFilter.hxx"
93 #endif
94 
95 #endif
itk::BoxImageFilter::OutputPixelType
typename TOutputImage::PixelType OutputPixelType
Definition: itkBoxImageFilter.h:67
itk::GTest::TypedefsAndConstructors::Dimension2::SizeType
ImageBaseType::SizeType SizeType
Definition: itkGTestTypedefsAndConstructors.h:49
itk::SmartPointer< Self >
itk::BoxImageFilter
A base class for all the filters working on a box neighborhood.
Definition: itkBoxImageFilter.h:40
itk::BoxImageFilter::OffsetType
typename TInputImage::OffsetType OffsetType
Definition: itkBoxImageFilter.h:62
itk::BoxSigmaImageFilter::PixelType
typename TInputImage::PixelType PixelType
Definition: itkBoxSigmaImageFilter.h:64
itk::Concept::SameDimension
Definition: itkConceptChecking.h:692
itk::BoxSigmaImageFilter
Implements a fast rectangular sigma filter using the accumulator approach.
Definition: itkBoxSigmaImageFilter.h:41
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::BoxImageFilter::IndexType
typename TInputImage::IndexType IndexType
Definition: itkBoxImageFilter.h:61
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itk::ImageToImageFilter::InputImageType
TInputImage InputImageType
Definition: itkImageToImageFilter.h:129
itk::ImageSource::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkImageSource.h:92
itkConceptMacro
#define itkConceptMacro(name, concept)
Definition: itkConceptChecking.h:64
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:138
itkBoxImageFilter.h
itk::BoxImageFilter::SizeType
typename TInputImage::SizeType SizeType
Definition: itkBoxImageFilter.h:60
itk::ImageSource::OutputImageType
TOutputImage OutputImageType
Definition: itkImageSource.h:90
itk::BoxImageFilter::RegionType
typename TInputImage::RegionType RegionType
Definition: itkBoxImageFilter.h:59