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

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 =========================================================================*/
00049 #ifndef __vtkSurfaceReconstructionFilter_h
00050 #define __vtkSurfaceReconstructionFilter_h
00051 
00052 #include "vtkDataSetToImageFilter.h"
00053 
00054 class VTK_IMAGING_EXPORT vtkSurfaceReconstructionFilter : public vtkDataSetToImageFilter
00055 {
00056 public:
00057   vtkTypeRevisionMacro(vtkSurfaceReconstructionFilter,vtkDataSetToImageFilter);
00058   void PrintSelf(ostream& os, vtkIndent indent);
00059 
00061   static vtkSurfaceReconstructionFilter* New();
00062 
00064 
00070   vtkGetMacro(NeighborhoodSize,int);
00071   vtkSetMacro(NeighborhoodSize,int);
00073 
00075 
00077   vtkGetMacro(SampleSpacing,float);
00078   vtkSetMacro(SampleSpacing,float);
00080 
00081 protected:
00082   vtkSurfaceReconstructionFilter();
00083   ~vtkSurfaceReconstructionFilter() {};
00084 
00085   virtual void ExecuteInformation();
00086   virtual void ExecuteData(vtkDataObject *);
00087 
00088   int NeighborhoodSize;
00089   float SampleSpacing;
00090 private:
00091   vtkSurfaceReconstructionFilter(const vtkSurfaceReconstructionFilter&);  // Not implemented.
00092   void operator=(const vtkSurfaceReconstructionFilter&);  // Not implemented.
00093 };
00094 
00095 #endif
00096