VTK  9.3.0
vtkImageConstantPad.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
27 #ifndef vtkImageConstantPad_h
28 #define vtkImageConstantPad_h
29 
30 #include "vtkImagePadFilter.h"
31 #include "vtkImagingCoreModule.h" // For export macro
32 
33 VTK_ABI_NAMESPACE_BEGIN
34 class VTKIMAGINGCORE_EXPORT vtkImageConstantPad : public vtkImagePadFilter
35 {
36 public:
39 
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
43 
46  vtkSetMacro(Constant, double);
47  vtkGetMacro(Constant, double);
49 
50 protected:
52  ~vtkImageConstantPad() override = default;
53 
54  double Constant;
55 
57  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData, int ext[6],
58  int id) override;
59 
60 private:
62  void operator=(const vtkImageConstantPad&) = delete;
63 };
64 
65 VTK_ABI_NAMESPACE_END
66 #endif
Makes image larger by padding with constant.
~vtkImageConstantPad() override=default
static vtkImageConstantPad * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
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,...
topologically and geometrically regular array of data
Definition: vtkImageData.h:52
Super class for filters that fill in extra pixels.
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.