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

dox/Imaging/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 =========================================================================*/ 00026 #ifndef __vtkImageContinuousDilate3D_h 00027 #define __vtkImageContinuousDilate3D_h 00028 00029 00030 #include "vtkImageSpatialFilter.h" 00031 00032 class vtkImageEllipsoidSource; 00033 00034 class VTK_IMAGING_EXPORT vtkImageContinuousDilate3D : public vtkImageSpatialFilter 00035 { 00036 public: 00037 00039 00041 static vtkImageContinuousDilate3D *New(); 00042 vtkTypeRevisionMacro(vtkImageContinuousDilate3D,vtkImageSpatialFilter); 00043 void PrintSelf(ostream& os, vtkIndent indent); 00045 00049 void SetKernelSize(int size0, int size1, int size2); 00050 00052 00055 vtkGetStringMacro(InputScalarsSelection); 00056 void SelectInputScalars(const char *fieldName) 00057 {this->SetInputScalarsSelection(fieldName);} 00059 00060 protected: 00061 vtkImageContinuousDilate3D(); 00062 ~vtkImageContinuousDilate3D(); 00063 00064 vtkImageEllipsoidSource *Ellipse; 00065 00066 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, 00067 int extent[6], int id); 00068 private: 00069 vtkImageContinuousDilate3D(const vtkImageContinuousDilate3D&); // Not implemented. 00070 void operator=(const vtkImageContinuousDilate3D&); // Not implemented. 00071 }; 00072 00073 #endif 00074 00075 00076