VTK  9.4.20241113
vtkImageLaplacian.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
47#ifndef vtkImageLaplacian_h
48#define vtkImageLaplacian_h
49
50#include "vtkImagingGeneralModule.h" // For export macro
52
53VTK_ABI_NAMESPACE_BEGIN
54class VTKIMAGINGGENERAL_EXPORT vtkImageLaplacian : public vtkThreadedImageAlgorithm
55{
56public:
59 void PrintSelf(ostream& os, vtkIndent indent) override;
60
62
65 vtkSetClampMacro(Dimensionality, int, 2, 3);
66 vtkGetMacro(Dimensionality, int);
68
69protected:
71 ~vtkImageLaplacian() override = default;
72
74
77 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
78 int outExt[6], int id) override;
79
80private:
81 vtkImageLaplacian(const vtkImageLaplacian&) = delete;
82 void operator=(const vtkImageLaplacian&) = delete;
83};
84
85VTK_ABI_NAMESPACE_END
86#endif
topologically and geometrically regular array of data
Computes divergence of gradient.
static vtkImageLaplacian * New()
~vtkImageLaplacian() override=default
void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int outExt[6], int id) override
If the subclass does not define an Execute method, then the task will be broken up,...
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Subclasses can reimplement this method to translate the update extent requests from each output port ...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Generic filter that has one input.