ITK  4.13.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:
47  typedef TParentImageFilter CPUSuperclass;
50 
52  itkNewMacro(Self);
53 
56 
58  typedef TInputImage InputImageType;
63  typedef typename TInputImage::PixelType InputPixelType;
64 
65  typedef TOutputImage OutputImageType;
66  typedef typename OutputImageType::PixelType OutputPixelType;
67 
71 
72 protected:
74  }
75  ~GPUBoxImageFilter() ITK_OVERRIDE {}
76 
77  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE
78  {
79  GPUSuperclass::PrintSelf(os, indent);
80  }
81 
82 private:
83  ITK_DISALLOW_COPY_AND_ASSIGN(GPUBoxImageFilter);
84 
85 };
86 }
87 
88 #endif
class to abstract the behaviour of the GPU filters.
SmartPointer< Self > Pointer
A base class for all the GPU filters working on a box neighborhood.
SmartPointer< const Self > ConstPointer
TInputImage::RegionType RegionType
CPUSuperclass::OffsetType OffsetType
CPUSuperclass::IndexType IndexType
CPUSuperclass::RegionType RegionType
TInputImage::PixelType InputPixelType
TInputImage::IndexType IndexType
Base class for all process objects that output image data.
unsigned long SizeValueType
Definition: itkIntTypes.h:143
TParentImageFilter CPUSuperclass
CPUSuperclass::SizeType RadiusType
InputImageType::SizeValueType RadiusValueType
TInputImage::OffsetType OffsetType
void PrintSelf(std::ostream &os, Indent indent) const override
TInputImage::SizeType SizeType
OutputImageType::PixelType OutputPixelType
CPUSuperclass::SizeType SizeType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
virtual void PrintSelf(std::ostream &os, Indent indent) const override
GPUImageToImageFilter< TInputImage, TOutputImage, TParentImageFilter > GPUSuperclass