VTK
dox/Imaging/vtkSurfaceReconstructionFilter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkSurfaceReconstructionFilter.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00033 #ifndef __vtkSurfaceReconstructionFilter_h
00034 #define __vtkSurfaceReconstructionFilter_h
00035 
00036 #include "vtkImageAlgorithm.h"
00037 
00038 class VTK_IMAGING_EXPORT vtkSurfaceReconstructionFilter : public vtkImageAlgorithm
00039 {
00040 public:
00041   vtkTypeMacro(vtkSurfaceReconstructionFilter,vtkImageAlgorithm);
00042   void PrintSelf(ostream& os, vtkIndent indent);
00043 
00045   static vtkSurfaceReconstructionFilter* New();
00046 
00048 
00054   vtkGetMacro(NeighborhoodSize,int);
00055   vtkSetMacro(NeighborhoodSize,int);
00057 
00059 
00061   vtkGetMacro(SampleSpacing,double);
00062   vtkSetMacro(SampleSpacing,double);
00064 
00065 protected:
00066   vtkSurfaceReconstructionFilter();
00067   ~vtkSurfaceReconstructionFilter() {};
00068 
00069   virtual int RequestInformation (vtkInformation *, 
00070                                   vtkInformationVector **, 
00071                                   vtkInformationVector *);
00072   virtual int RequestData (vtkInformation *, 
00073                            vtkInformationVector **, 
00074                            vtkInformationVector *);
00075 
00076   int NeighborhoodSize;
00077   double SampleSpacing;
00078 
00079   virtual int FillInputPortInformation(int, vtkInformation*);
00080 
00081 private:
00082   vtkSurfaceReconstructionFilter(const vtkSurfaceReconstructionFilter&);  // Not implemented.
00083   void operator=(const vtkSurfaceReconstructionFilter&);  // Not implemented.
00084 };
00085 
00086 #endif
00087