VTK  9.3.0
vtkImageWrapPad.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
28 #ifndef vtkImageWrapPad_h
29 #define vtkImageWrapPad_h
30 
31 #include "vtkImagePadFilter.h"
32 #include "vtkImagingCoreModule.h" // For export macro
33 
34 VTK_ABI_NAMESPACE_BEGIN
35 class vtkInformation;
37 
38 class VTKIMAGINGCORE_EXPORT vtkImageWrapPad : public vtkImagePadFilter
39 {
40 public:
41  static vtkImageWrapPad* New();
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44 
45 protected:
46  vtkImageWrapPad() = default;
47  ~vtkImageWrapPad() override = default;
48 
49  void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wholeExtent[6]) override;
51  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData, int ext[6],
52  int id) override;
53 
54 private:
55  vtkImageWrapPad(const vtkImageWrapPad&) = delete;
56  void operator=(const vtkImageWrapPad&) = delete;
57 };
58 
59 VTK_ABI_NAMESPACE_END
60 #endif
topologically and geometrically regular array of data
Definition: vtkImageData.h:52
Super class for filters that fill in extra pixels.
Makes an image larger by wrapping existing data.
void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wholeExtent[6]) override
vtkImageWrapPad()=default
~vtkImageWrapPad() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkImageWrapPad * New()
void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int ext[6], int id) override
If the subclass does not define an Execute method, then the task will be broken up,...
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.