ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkGPUBoxImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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 itkGPUBoxImageFilter_h
19 #define itkGPUBoxImageFilter_h
20 
22 #include "itkCastImageFilter.h"
23 #include "itkBoxImageFilter.h"
24 
25 namespace itk
26 {
39 template< typename TInputImage, typename TOutputImage, typename TParentImageFilter = BoxImageFilter< TInputImage, TOutputImage > >
41  public GPUImageToImageFilter< TInputImage, TOutputImage, TParentImageFilter >
42 {
43 public:
44  ITK_DISALLOW_COPY_AND_ASSIGN(GPUBoxImageFilter);
45 
49  using CPUSuperclass = TParentImageFilter;
52 
54  itkNewMacro(Self);
55 
58 
60  using InputImageType = TInputImage;
65  using InputPixelType = typename TInputImage::PixelType;
66 
67  using OutputImageType = TOutputImage;
68  using OutputPixelType = typename OutputImageType::PixelType;
69 
73 
74 protected:
76  }
77  ~GPUBoxImageFilter() override {}
78 
79  void PrintSelf(std::ostream & os, Indent indent) const override
80  {
81  GPUSuperclass::PrintSelf(os, indent);
82  }
83 };
84 }
85 
86 #endif
class to abstract the behaviour of the GPU filters.
typename TInputImage::SizeType RadiusType
A base class for all the GPU filters working on a box neighborhood.
unsigned long SizeValueType
Definition: itkIntTypes.h:83
typename TInputImage::IndexType IndexType
typename TOutputImage::PixelType OutputPixelType
typename TInputImage::RegionType RegionType
Applies an averaging filter to an image.
Base class for all process objects that output image data.
typename TInputImage::SizeValueType RadiusValueType
typename TInputImage::OffsetType OffsetType
typename TInputImage::SizeType SizeType
TOutputImage OutputImageType
void PrintSelf(std::ostream &os, Indent indent) const override
typename TInputImage::PixelType InputPixelType
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition: itkIndent.h:49