VTK  9.3.0
vtkImageMedian3D.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
29#ifndef vtkImageMedian3D_h
30#define vtkImageMedian3D_h
31
33#include "vtkImagingGeneralModule.h" // For export macro
34
35VTK_ABI_NAMESPACE_BEGIN
36class VTKIMAGINGGENERAL_EXPORT vtkImageMedian3D : public vtkImageSpatialAlgorithm
37{
38public:
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
47 void SetKernelSize(int size0, int size1, int size2);
48
50
53 vtkGetMacro(NumberOfElements, int);
55
56protected:
59
61
63 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
64 int outExt[6], int id) override;
65
66private:
67 vtkImageMedian3D(const vtkImageMedian3D&) = delete;
68 void operator=(const vtkImageMedian3D&) = delete;
69};
70
71VTK_ABI_NAMESPACE_END
72#endif
topologically and geometrically regular array of data
Median Filter.
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,...
static vtkImageMedian3D * New()
void SetKernelSize(int size0, int size1, int size2)
This method sets the size of the neighborhood.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkImageMedian3D() override
Filters that operate on pixel neighborhoods.
a simple class to control print indentation
Definition vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.