VTK  9.3.20240420
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
59#ifndef vtkImageMedian3D_h
60#define vtkImageMedian3D_h
61
63#include "vtkImagingGeneralModule.h" // For export macro
64
65VTK_ABI_NAMESPACE_BEGIN
66class VTKIMAGINGGENERAL_EXPORT vtkImageMedian3D : public vtkImageSpatialAlgorithm
67{
68public:
71 void PrintSelf(ostream& os, vtkIndent indent) override;
72
77 void SetKernelSize(int size0, int size1, int size2);
78
80
83 vtkGetMacro(NumberOfElements, int);
85
86protected:
89
91
93 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
94 int outExt[6], int id) override;
95
96private:
97 vtkImageMedian3D(const vtkImageMedian3D&) = delete;
98 void operator=(const vtkImageMedian3D&) = delete;
99};
100
101VTK_ABI_NAMESPACE_END
102#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:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.