Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Imaging/vtkSurfaceReconstructionFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkSurfaceReconstructionFilter.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00038 #ifndef __vtkSurfaceReconstructionFilter_h
00039 #define __vtkSurfaceReconstructionFilter_h
00040 
00041 #include "vtkDataSetToImageFilter.h"
00042 
00043 class VTK_IMAGING_EXPORT vtkSurfaceReconstructionFilter : public vtkDataSetToImageFilter
00044 {
00045 public:
00046   vtkTypeRevisionMacro(vtkSurfaceReconstructionFilter,vtkDataSetToImageFilter);
00047   void PrintSelf(ostream& os, vtkIndent indent);
00048 
00050   static vtkSurfaceReconstructionFilter* New();
00051 
00053 
00059   vtkGetMacro(NeighborhoodSize,int);
00060   vtkSetMacro(NeighborhoodSize,int);
00062 
00064 
00066   vtkGetMacro(SampleSpacing,float);
00067   vtkSetMacro(SampleSpacing,float);
00069 
00070 protected:
00071   vtkSurfaceReconstructionFilter();
00072   ~vtkSurfaceReconstructionFilter() {};
00073 
00074   virtual void ExecuteInformation();
00075   virtual void ExecuteData(vtkDataObject *);
00076 
00077   int NeighborhoodSize;
00078   float SampleSpacing;
00079 private:
00080   vtkSurfaceReconstructionFilter(const vtkSurfaceReconstructionFilter&);  // Not implemented.
00081   void operator=(const vtkSurfaceReconstructionFilter&);  // Not implemented.
00082 };
00083 
00084 #endif
00085