VTK
vtkImageMagnitude.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageMagnitude.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 =========================================================================*/
24 #ifndef __vtkImageMagnitude_h
25 #define __vtkImageMagnitude_h
26 
27 
29 
31 {
32 public:
33  static vtkImageMagnitude *New();
35 
36 protected:
39 
42 
43  void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
44  int outExt[6], int id);
45 
46 private:
47  vtkImageMagnitude(const vtkImageMagnitude&); // Not implemented.
48  void operator=(const vtkImageMagnitude&); // Not implemented.
49 };
50 
51 #endif
52 
53 
54 
55 
56 
57 
58 
59 
60 
61