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
18#ifndef vtkImageConstantPad_h
19#define vtkImageConstantPad_h
20
21#include "vtkImagePadFilter.h"
22#include "vtkImagingCoreModule.h" // For export macro
23
24VTK_ABI_NAMESPACE_BEGIN
25class VTKIMAGINGCORE_EXPORT vtkImageConstantPad : public vtkImagePadFilter
26{
27public:
30
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
34
37 vtkSetMacro(Constant, double);
38 vtkGetMacro(Constant, double);
40
41protected:
43 ~vtkImageConstantPad() override = default;
44
45 double Constant;
46
48 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData, int ext[6],
49 int id) override;
50
51private:
53 void operator=(const vtkImageConstantPad&) = delete;
54};
55
56VTK_ABI_NAMESPACE_END
57#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
Super class for filters that fill in extra pixels.
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.