VTK  9.2.5
vtkImageWrapPad.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageWrapPad.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 =========================================================================*/
50 #ifndef vtkImageWrapPad_h
51 #define vtkImageWrapPad_h
52 
53 #include "vtkImagePadFilter.h"
54 #include "vtkImagingCoreModule.h" // For export macro
55 
56 class vtkInformation;
58 
59 class VTKIMAGINGCORE_EXPORT vtkImageWrapPad : public vtkImagePadFilter
60 {
61 public:
62  static vtkImageWrapPad* New();
64  void PrintSelf(ostream& os, vtkIndent indent) override;
65 
66 protected:
67  vtkImageWrapPad() = default;
68  ~vtkImageWrapPad() override = default;
69 
70  void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wholeExtent[6]) override;
72  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData, int ext[6],
73  int id) override;
74 
75 private:
76  vtkImageWrapPad(const vtkImageWrapPad&) = delete;
77  void operator=(const vtkImageWrapPad&) = delete;
78 };
79 
80 #endif
topologically and geometrically regular array of data
Definition: vtkImageData.h:163
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:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.