VTK
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
35#include "vtkImagingCoreModule.h" // For export macro
36#include "vtkImagePadFilter.h"
37
38class vtkInformation;
40
41class VTKIMAGINGCORE_EXPORT vtkImageWrapPad : public vtkImagePadFilter
42{
43public:
46
47protected:
50
51 void ComputeInputUpdateExtent (int inExt[6], int outExt[6], int wExt[6]);
53 vtkInformationVector** inputVector,
54 vtkInformationVector* outputVector,
55 vtkImageData ***inData, vtkImageData **outData,
56 int ext[6], int id) VTK_OVERRIDE;
57private:
58 vtkImageWrapPad(const vtkImageWrapPad&) VTK_DELETE_FUNCTION;
59 void operator=(const vtkImageWrapPad&) VTK_DELETE_FUNCTION;
60};
61
62#endif
63
64
65
66// VTK-HeaderTest-Exclude: vtkImageWrapPad.h
topologically and geometrically regular array of data
Definition: vtkImageData.h:46
Super class for filters that fill in extra pixels.
Makes an image larger by wrapping existing data.
static vtkImageWrapPad * New()
void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wExt[6])
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,...
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.