VTK
vtkImageMedian3D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageMedian3D.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
28 #ifndef __vtkImageMedian3D_h
29 #define __vtkImageMedian3D_h
30 
31 
33 
35 {
36 public:
37  static vtkImageMedian3D *New();
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
43  void SetKernelSize(int size0, int size1, int size2);
44 
46 
47  vtkGetMacro(NumberOfElements,int);
49 
50 protected:
53 
55 
56  void ThreadedRequestData(vtkInformation *request,
57  vtkInformationVector **inputVector,
58  vtkInformationVector *outputVector,
59  vtkImageData ***inData, vtkImageData **outData,
60  int extent[6], int id);
61 
62 private:
63  vtkImageMedian3D(const vtkImageMedian3D&); // Not implemented.
64  void operator=(const vtkImageMedian3D&); // Not implemented.
65 };
66 
67 #endif