ITK  4.4.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< class TInputImage, class TOutputImage = TInputImage, class TParentImageFilter =
37  InPlaceImageFilter< TInputImage, TOutputImage > >
38 class ITK_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:
72 
73  virtual void PrintSelf(std::ostream & os, Indent indent) const;
74 
87  virtual void AllocateOutputs();
88 
98  virtual void ReleaseInputs();
99 
100 private:
101  GPUInPlaceImageFilter(const Self &); //purposely not implemented
102  void operator=(const Self &); //purposely not implemented
103 
104 };
105 
106 } // end namespace itk
107 
108 #ifndef ITK_MANUAL_INSTANTIATION
109 #include "itkGPUInPlaceImageFilter.hxx"
110 #endif
111 
112 #endif
113