VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkSurfaceReconstructionFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSurfaceReconstructionFilter.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 =========================================================================*/
33 #ifndef __vtkSurfaceReconstructionFilter_h
34 #define __vtkSurfaceReconstructionFilter_h
35 
36 #include "vtkImagingHybridModule.h" // For export macro
37 #include "vtkImageAlgorithm.h"
38 
39 class VTKIMAGINGHYBRID_EXPORT vtkSurfaceReconstructionFilter : public vtkImageAlgorithm
40 {
41 public:
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
47 
49 
55  vtkGetMacro(NeighborhoodSize,int);
56  vtkSetMacro(NeighborhoodSize,int);
58 
60 
62  vtkGetMacro(SampleSpacing,double);
63  vtkSetMacro(SampleSpacing,double);
65 
66 protected:
69 
70  virtual int RequestInformation (vtkInformation *,
71  vtkInformationVector **,
72  vtkInformationVector *);
73  virtual int RequestData (vtkInformation *,
74  vtkInformationVector **,
75  vtkInformationVector *);
76 
78  double SampleSpacing;
79 
80  virtual int FillInputPortInformation(int, vtkInformation*);
81 
82 private:
84  void operator=(const vtkSurfaceReconstructionFilter&); // Not implemented.
85 };
86 
87 #endif
88 
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
virtual int FillInputPortInformation(int port, vtkInformation *info)
reconstructs a surface from unorganized points
Generic algorithm superclass for image algs.
void PrintSelf(ostream &os, vtkIndent indent)
static vtkAlgorithm * New()
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)