00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkImageSobel3D.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 =========================================================================*/ 00031 #ifndef __vtkImageSobel3D_h 00032 #define __vtkImageSobel3D_h 00033 00034 00035 #include "vtkImageSpatialFilter.h" 00036 00037 class VTK_IMAGING_EXPORT vtkImageSobel3D : public vtkImageSpatialFilter 00038 { 00039 public: 00040 static vtkImageSobel3D *New(); 00041 vtkTypeRevisionMacro(vtkImageSobel3D,vtkImageSpatialFilter); 00042 void PrintSelf(ostream& os, vtkIndent indent); 00043 00044 protected: 00045 vtkImageSobel3D(); 00046 ~vtkImageSobel3D() {}; 00047 00048 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, 00049 int outExt[6], int id); 00050 void ExecuteInformation(vtkImageData *inData, vtkImageData *outData); 00051 void ExecuteInformation(){this->vtkImageToImageFilter::ExecuteInformation();}; 00052 private: 00053 vtkImageSobel3D(const vtkImageSobel3D&); // Not implemented. 00054 void operator=(const vtkImageSobel3D&); // Not implemented. 00055 }; 00056 00057 #endif 00058 00059 00060