VTK  9.3.1
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 
24 VTK_ABI_NAMESPACE_BEGIN
25 class VTKIMAGINGCORE_EXPORT vtkImageConstantPad : public vtkImagePadFilter
26 {
27 public:
28  static vtkImageConstantPad* New();
30 
31  void PrintSelf(ostream& os, vtkIndent indent) override;
32 
34 
37  vtkSetMacro(Constant, double);
38  vtkGetMacro(Constant, double);
40 
41 protected:
43  ~vtkImageConstantPad() override = default;
44 
45  double Constant;
46 
47  void ThreadedRequestData(vtkInformation* request, vtkInformationVector** inputVector,
48  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData, int ext[6],
49  int id) override;
50 
51 private:
53  void operator=(const vtkImageConstantPad&) = delete;
54 };
55 
56 VTK_ABI_NAMESPACE_END
57 #endif
static vtkImagePadFilter * New()
Store vtkAlgorithm input/output information.
Super class for filters that fill in extra pixels.
a simple class to control print indentation
Definition: vtkIndent.h:28
topologically and geometrically regular array of data
Definition: vtkImageData.h:42
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.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Makes image larger by padding with constant.
Store zero or more vtkInformation instances.