VTK
vtkImageInPlaceFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageInPlaceFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
25 #ifndef vtkImageInPlaceFilter_h
26 #define vtkImageInPlaceFilter_h
27 
28 #include "vtkCommonExecutionModelModule.h" // For export macro
29 #include "vtkImageAlgorithm.h"
30 
31 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkImageInPlaceFilter : public vtkImageAlgorithm
32 {
33 public:
35  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
36 
37 protected:
39  ~vtkImageInPlaceFilter() VTK_OVERRIDE;
40 
41  int RequestData(vtkInformation *request,
42  vtkInformationVector** inputVector,
43  vtkInformationVector* outputVector) VTK_OVERRIDE;
44 
45  void CopyData(vtkImageData *in, vtkImageData *out, int* outExt);
46 
47 private:
48  vtkImageInPlaceFilter(const vtkImageInPlaceFilter&) VTK_DELETE_FUNCTION;
49  void operator=(const vtkImageInPlaceFilter&) VTK_DELETE_FUNCTION;
50 };
51 
52 #endif
53 
54 
55 
56 
57 
58 
59 
Filter that operates in place.
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:39
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
Generic algorithm superclass for image algs.
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.