VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Imaging
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
33
#include "
vtkThreadedImageAlgorithm.h
"
34
35
class
VTK_IMAGING_EXPORT
vtkImageLaplacian
:
public
vtkThreadedImageAlgorithm
36
{
37
public
:
38
static
vtkImageLaplacian
*
New
();
39
vtkTypeMacro(
vtkImageLaplacian
,
vtkThreadedImageAlgorithm
);
40
void
PrintSelf
(ostream& os,
vtkIndent
indent);
41
43
44
vtkSetClampMacro(Dimensionality,
int
,2,3);
45
vtkGetMacro(Dimensionality,
int
);
47
48
protected
:
49
vtkImageLaplacian
();
50
~vtkImageLaplacian
() {};
51
52
int
Dimensionality;
53
54
virtual
int
RequestUpdateExtent
(
vtkInformation
*,
vtkInformationVector
**,
55
vtkInformationVector
*);
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
Generated on Sun Sep 9 2012 13:03:40 for VTK by
1.8.1.2