VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Imaging
vtkImageDotProduct.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkImageDotProduct.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
=========================================================================*/
25
#ifndef __vtkImageDotProduct_h
26
#define __vtkImageDotProduct_h
27
28
29
30
#include "
vtkThreadedImageAlgorithm.h
"
31
32
class
VTK_IMAGING_EXPORT
vtkImageDotProduct
:
public
vtkThreadedImageAlgorithm
33
{
34
public
:
35
static
vtkImageDotProduct
*
New
();
36
vtkTypeMacro(
vtkImageDotProduct
,
vtkThreadedImageAlgorithm
);
37
39
40
virtual
void
SetInput1
(
vtkDataObject
*in) { this->
SetInput
(0,in); }
41
virtual
void
SetInput2
(
vtkDataObject
*in) { this->
SetInput
(1,in); }
43
44
protected
:
45
vtkImageDotProduct
();
46
~vtkImageDotProduct
() {};
47
48
virtual
int
RequestInformation
(
vtkInformation
*,
49
vtkInformationVector
**,
50
vtkInformationVector
*);
51
52
virtual
void
ThreadedRequestData
(
vtkInformation
*request,
53
vtkInformationVector
**inputVector,
54
vtkInformationVector
*outputVector,
55
vtkImageData
***inData,
56
vtkImageData
**outData,
57
int
extent
[6],
int
threadId);
58
59
private
:
60
vtkImageDotProduct
(
const
vtkImageDotProduct
&);
// Not implemented.
61
void
operator=(
const
vtkImageDotProduct
&);
// Not implemented.
62
};
63
64
#endif
65
66
67
Generated on Wed May 30 2012 13:22:13 for VTK by
1.8.1