VTK  9.1.0
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 =========================================================================*/
44 #ifndef vtkImageWrapPad_h
45 #define vtkImageWrapPad_h
46 
47 #include "vtkImagePadFilter.h"
48 #include "vtkImagingCoreModule.h" // For export macro
49 
50 class vtkInformation;
52 
53 class VTKIMAGINGCORE_EXPORT vtkImageWrapPad : public vtkImagePadFilter
54 {
55 public:
56  static vtkImageWrapPad* New();
58  void PrintSelf(ostream& os, vtkIndent indent) override;
59 
60 protected:
61  vtkImageWrapPad() = default;
62  ~vtkImageWrapPad() override = default;
63 
64  void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wholeExtent[6]) override;
66  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData, int ext[6],
67  int id) override;
68 
69 private:
70  vtkImageWrapPad(const vtkImageWrapPad&) = delete;
71  void operator=(const vtkImageWrapPad&) = delete;
72 };
73 
74 #endif
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:145
vtkImageWrapPad::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkImageWrapPad::ComputeInputUpdateExtent
void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wholeExtent[6]) override
vtkImageWrapPad
Makes an image larger by wrapping existing data.
Definition: vtkImageWrapPad.h:54
vtkImageWrapPad::New
static vtkImageWrapPad * New()
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:157
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:113
vtkImageWrapPad::~vtkImageWrapPad
~vtkImageWrapPad() override=default
vtkImageWrapPad::vtkImageWrapPad
vtkImageWrapPad()=default
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:183
vtkImagePadFilter
Super class for filters that fill in extra pixels.
Definition: vtkImagePadFilter.h:32
vtkImageWrapPad::ThreadedRequestData
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,...
vtkImagePadFilter.h