VTK
vtkImageSobel2D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageSobel2D.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 __vtkImageSobel2D_h
27 #define __vtkImageSobel2D_h
28 
29 
31 
33 {
34 public:
35  static vtkImageSobel2D *New();
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
39 protected:
42 
43  void ThreadedRequestData(vtkInformation *request,
44  vtkInformationVector **inputVector,
45  vtkInformationVector *outputVector,
46  vtkImageData ***inData, vtkImageData **outData,
47  int outExt[6], int id);
48  virtual int RequestInformation (vtkInformation *request,
49  vtkInformationVector **inputVector,
50  vtkInformationVector *outputVector);
51 
52 private:
53  vtkImageSobel2D(const vtkImageSobel2D&); // Not implemented.
54  void operator=(const vtkImageSobel2D&); // Not implemented.
55 };
56 
57 #endif
58 
59 
60