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