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

vtkImageContinuousDilate3D.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageContinuousDilate3D.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 =========================================================================*/
00030 #ifndef __vtkImageContinuousDilate3D_h
00031 #define __vtkImageContinuousDilate3D_h
00032 
00033 
00034 #include "vtkImageSpatialFilter.h"
00035 
00036 class vtkImageEllipsoidSource;
00037 
00038 class VTK_IMAGING_EXPORT vtkImageContinuousDilate3D : public vtkImageSpatialFilter
00039 {
00040 public:
00041 
00043 
00045   static vtkImageContinuousDilate3D *New();
00046   vtkTypeRevisionMacro(vtkImageContinuousDilate3D,vtkImageSpatialFilter);
00047   void PrintSelf(ostream& os, vtkIndent indent);
00049   
00053   void SetKernelSize(int size0, int size1, int size2);
00054 
00055 protected:
00056   vtkImageContinuousDilate3D();
00057   ~vtkImageContinuousDilate3D();
00058 
00059   vtkImageEllipsoidSource *Ellipse;
00060     
00061   void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, 
00062                        int extent[6], int id);
00063 private:
00064   vtkImageContinuousDilate3D(const vtkImageContinuousDilate3D&);  // Not implemented.
00065   void operator=(const vtkImageContinuousDilate3D&);  // Not implemented.
00066 };
00067 
00068 #endif
00069 
00070 
00071