Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | 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 
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 =========================================================================*/
00037 #ifndef __vtkImageContinuousDilate3D_h
00038 #define __vtkImageContinuousDilate3D_h
00039 
00040 
00041 #include "vtkImageSpatialFilter.h"
00042 
00043 class vtkImageEllipsoidSource;
00044 
00045 class VTK_IMAGING_EXPORT vtkImageContinuousDilate3D : public vtkImageSpatialFilter
00046 {
00047 public:
00048 
00050 
00052   static vtkImageContinuousDilate3D *New();
00053   vtkTypeRevisionMacro(vtkImageContinuousDilate3D,vtkImageSpatialFilter);
00054   void PrintSelf(ostream& os, vtkIndent indent);
00056   
00060   void SetKernelSize(int size0, int size1, int size2);
00061 
00063 
00066   vtkGetStringMacro(InputScalarsSelection);
00067   void SelectInputScalars(const char *fieldName) 
00068     {this->SetInputScalarsSelection(fieldName);}  
00070   
00071 protected:
00072   vtkImageContinuousDilate3D();
00073   ~vtkImageContinuousDilate3D();
00074 
00075   vtkImageEllipsoidSource *Ellipse;
00076     
00077   void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, 
00078                        int extent[6], int id);
00079 private:
00080   vtkImageContinuousDilate3D(const vtkImageContinuousDilate3D&);  // Not implemented.
00081   void operator=(const vtkImageContinuousDilate3D&);  // Not implemented.
00082 };
00083 
00084 #endif
00085 
00086 
00087