VTK  9.2.6
vtkImageMirrorPad.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageMirrorPad.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 =========================================================================*/
55 #ifndef vtkImageMirrorPad_h
56 #define vtkImageMirrorPad_h
57 
58 #include "vtkImagePadFilter.h"
59 #include "vtkImagingCoreModule.h" // For export macro
60 
61 class VTKIMAGINGCORE_EXPORT vtkImageMirrorPad : public vtkImagePadFilter
62 {
63 public:
66  void PrintSelf(ostream& os, vtkIndent indent) override;
67 
68 protected:
69  vtkImageMirrorPad() = default;
70  ~vtkImageMirrorPad() override = default;
71 
72  void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wExt[6]) override;
74  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData, int ext[6],
75  int id) override;
76 
77 private:
78  vtkImageMirrorPad(const vtkImageMirrorPad&) = delete;
79  void operator=(const vtkImageMirrorPad&) = delete;
80 };
81 
82 #endif
topologically and geometrically regular array of data
Definition: vtkImageData.h:163
Extra pixels are filled by mirror images.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkImageMirrorPad * New()
vtkImageMirrorPad()=default
~vtkImageMirrorPad() override=default
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,...
void ComputeInputUpdateExtent(int inExt[6], int outExt[6], int wExt[6]) override
Super class for filters that fill in extra pixels.
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.