ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkGPUInPlaceImageFilter.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 
19 #ifndef itkGPUInPlaceImageFilter_h
20 #define itkGPUInPlaceImageFilter_h
21 
22 #include "itkInPlaceImageFilter.h"
24 
25 namespace itk
26 {
36 template< typename TInputImage, typename TOutputImage = TInputImage, typename TParentImageFilter =
37  InPlaceImageFilter< TInputImage, TOutputImage > >
38 class ITK_TEMPLATE_EXPORT GPUInPlaceImageFilter : public GPUImageToImageFilter< TInputImage, TOutputImage, TParentImageFilter >
39 {
40 public:
44  typedef TParentImageFilter CPUSuperclass;
47 
50 
52  typedef typename GPUSuperclass::OutputImageType OutputImageType;
53  typedef typename GPUSuperclass::OutputImagePointer OutputImagePointer;
56 
58  itkStaticConstMacro(InputImageDimension, unsigned int, TInputImage::ImageDimension);
59  itkStaticConstMacro(OutputImageDimension, unsigned int, TOutputImage::ImageDimension);
61 
63  typedef TInputImage InputImageType;
64  typedef typename InputImageType::Pointer InputImagePointer;
65  typedef typename InputImageType::ConstPointer InputImageConstPointer;
66  typedef typename InputImageType::RegionType InputImageRegionType;
67  typedef typename InputImageType::PixelType InputImagePixelType;
68 
69 protected:
71  ~GPUInPlaceImageFilter() ITK_OVERRIDE;
72 
73  virtual void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
74 
87  virtual void AllocateOutputs() ITK_OVERRIDE;
88 
98  virtual void ReleaseInputs() ITK_OVERRIDE;
99 
100 private:
101  ITK_DISALLOW_COPY_AND_ASSIGN(GPUInPlaceImageFilter);
102 
103 };
104 
105 } // end namespace itk
106 
107 #ifndef ITK_MANUAL_INSTANTIATION
108 #include "itkGPUInPlaceImageFilter.hxx"
109 #endif
110 
111 #endif
class to abstract the behaviour of the GPU filters.
GPUSuperclass::OutputImagePixelType OutputImagePixelType
GPUSuperclass::OutputImageRegionType OutputImageRegionType
GPUSuperclass::OutputImageType OutputImageType
InputImageType::PixelType InputImagePixelType
Base class for GPU filters that take an image as input and overwrite that image as the output...
InputImageType::Pointer InputImagePointer
GPUSuperclass::OutputImagePointer OutputImagePointer
InputImageType::RegionType InputImageRegionType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
GPUImageToImageFilter< TInputImage, TOutputImage, TParentImageFilter > GPUSuperclass
SmartPointer< const Self > ConstPointer
InputImageType::ConstPointer InputImageConstPointer