VTK
vtkImageLaplacian.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageLaplacian.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 =========================================================================*/
29 #ifndef __vtkImageLaplacian_h
30 #define __vtkImageLaplacian_h
31 
32 
34 
36 {
37 public:
38  static vtkImageLaplacian *New();
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43 
44  vtkSetClampMacro(Dimensionality,int,2,3);
45  vtkGetMacro(Dimensionality,int);
47 
48 protected:
51 
52  int Dimensionality;
53 
56  void ThreadedRequestData(vtkInformation *request,
57  vtkInformationVector **inputVector,
58  vtkInformationVector *outputVector,
59  vtkImageData ***inData, vtkImageData **outData,
60  int outExt[6], int id);
61 
62 private:
63  vtkImageLaplacian(const vtkImageLaplacian&); // Not implemented.
64  void operator=(const vtkImageLaplacian&); // Not implemented.
65 };
66 
67 #endif
68 
69 
70