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 
38 class vtkInformation;
40 
41 class VTKIMAGINGCORE_EXPORT vtkImageWrapPad : public vtkImagePadFilter
42 {
43 public:
44  static vtkImageWrapPad *New();
46 
47 protected:
50 
51  void ComputeInputUpdateExtent (int inExt[6], int outExt[6], int wExt[6]);
52  void ThreadedRequestData (vtkInformation* request,
53  vtkInformationVector** inputVector,
54  vtkInformationVector* outputVector,
55  vtkImageData ***inData, vtkImageData **outData,
56  int ext[6], int id) VTK_OVERRIDE;
57 private:
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
static vtkImagePadFilter * New()
Store vtkAlgorithm input/output information.
Makes an image larger by wrapping existing data.
Super class for filters that fill in extra pixels.
virtual void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wExt[6])
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
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.
Store zero or more vtkInformation instances.