VTK
vtkImageRange3D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageRange3D.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 =========================================================================*/
26 #ifndef __vtkImageRange3D_h
27 #define __vtkImageRange3D_h
28 
29 
31 
33 
35 {
36 public:
37  static vtkImageRange3D *New();
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
44  void SetKernelSize(int size0, int size1, int size2);
45 
46 protected:
48  ~vtkImageRange3D();
49 
51 
52  virtual int RequestInformation (vtkInformation *request,
53  vtkInformationVector **inputVector,
54  vtkInformationVector *outputVector);
55  void ThreadedRequestData(vtkInformation *request,
56  vtkInformationVector **inputVector,
57  vtkInformationVector *outputVector,
58  vtkImageData ***inData, vtkImageData **outData,
59  int extent[6], int id);
60  virtual int RequestData(vtkInformation *request,
61  vtkInformationVector **inputVector,
62  vtkInformationVector *outputVector);
63 
64 private:
65  vtkImageRange3D(const vtkImageRange3D&); // Not implemented.
66  void operator=(const vtkImageRange3D&); // Not implemented.
67 };
68 
69 #endif