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:
49  ~vtkImageWrapPad() override {}
50 
51  void ComputeInputUpdateExtent (int inExt[6], int outExt[6], int wExt[6]) override;
52  void ThreadedRequestData (vtkInformation* request,
53  vtkInformationVector** inputVector,
54  vtkInformationVector* outputVector,
55  vtkImageData ***inData, vtkImageData **outData,
56  int ext[6], int id) override;
57 private:
58  vtkImageWrapPad(const vtkImageWrapPad&) = delete;
59  void operator=(const vtkImageWrapPad&) = delete;
60 };
61 
62 #endif
63 
64 
65 
66 // VTK-HeaderTest-Exclude: vtkImageWrapPad.h
vtkThreadedImageAlgorithm::ThreadedRequestData
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,...
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkImagePadFilter::New
static vtkImagePadFilter * New()
vtkImageWrapPad
Makes an image larger by wrapping existing data.
Definition: vtkImageWrapPad.h:41
vtkImagePadFilter::ComputeInputUpdateExtent
virtual void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wExt[6])
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkImagePadFilter
Super class for filters that fill in extra pixels.
Definition: vtkImagePadFilter.h:31
vtkImageWrapPad::vtkImageWrapPad
vtkImageWrapPad()
Definition: vtkImageWrapPad.h:48
vtkImagePadFilter.h
vtkImageWrapPad::~vtkImageWrapPad
~vtkImageWrapPad() override
Definition: vtkImageWrapPad.h:49