VTK  9.3.20240327
vtkImageInPlaceFilter.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
13 #ifndef vtkImageInPlaceFilter_h
14 #define vtkImageInPlaceFilter_h
15 
16 #include "vtkCommonExecutionModelModule.h" // For export macro
17 #include "vtkImageAlgorithm.h"
18 
19 VTK_ABI_NAMESPACE_BEGIN
20 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkImageInPlaceFilter : public vtkImageAlgorithm
21 {
22 public:
24  void PrintSelf(ostream& os, vtkIndent indent) override;
25 
26 protected:
29 
30  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
31  vtkInformationVector* outputVector) override;
32 
33  void CopyData(vtkImageData* in, vtkImageData* out, int* outExt);
34 
35 private:
37  void operator=(const vtkImageInPlaceFilter&) = delete;
38 };
39 
40 VTK_ABI_NAMESPACE_END
41 #endif
Generic algorithm superclass for image algs.
topologically and geometrically regular array of data
Definition: vtkImageData.h:155
Filter that operates in place.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called in response to a REQUEST_DATA request from the executive.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkImageInPlaceFilter() override
void CopyData(vtkImageData *in, vtkImageData *out, int *outExt)
a simple class to control print indentation
Definition: vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.