ITK  5.0.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:
41  ITK_DISALLOW_COPY_AND_ASSIGN(GPUInPlaceImageFilter);
42 
46  using CPUSuperclass = TParentImageFilter;
49 
52 
54  using OutputImageType = typename GPUSuperclass::OutputImageType;
55  using OutputImagePointer = typename GPUSuperclass::OutputImagePointer;
58 
60  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
61  static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
62 
64  using InputImageType = TInputImage;
65  using InputImagePointer = typename InputImageType::Pointer;
66  using InputImageConstPointer = typename InputImageType::ConstPointer;
68  using InputImagePixelType = typename InputImageType::PixelType;
69 
70 protected:
72  ~GPUInPlaceImageFilter() override;
73 
74  void PrintSelf(std::ostream & os, Indent indent) const override;
75 
88  void AllocateOutputs() override;
89 
99  void ReleaseInputs() override;
100 };
102 
103 } // end namespace itk
104 
105 #ifndef ITK_MANUAL_INSTANTIATION
106 #include "itkGPUInPlaceImageFilter.hxx"
107 #endif
108 
109 #endif
class to abstract the behaviour of the GPU filters.
Base class for GPU filters that take an image as input and overwrite that image as the output...
Control indentation during Print() invocation.
Definition: itkIndent.h:49