vtkImageLogarithmicScale.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00037 #ifndef __vtkImageLogarithmicScale_h
00038 #define __vtkImageLogarithmicScale_h
00039
00040
00041 #include "vtkThreadedImageAlgorithm.h"
00042
00043 class VTK_IMAGING_EXPORT vtkImageLogarithmicScale : public vtkThreadedImageAlgorithm
00044 {
00045 public:
00046 static vtkImageLogarithmicScale *New();
00047 vtkTypeRevisionMacro(vtkImageLogarithmicScale,vtkThreadedImageAlgorithm);
00048 void PrintSelf(ostream& os, vtkIndent indent);
00049
00051
00052 vtkSetMacro(Constant,double);
00053 vtkGetMacro(Constant,double);
00055
00056 protected:
00057 vtkImageLogarithmicScale();
00058 ~vtkImageLogarithmicScale() {};
00059
00060 double Constant;
00061
00062 void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
00063 int outExt[6], int id);
00064 private:
00065 vtkImageLogarithmicScale(const vtkImageLogarithmicScale&);
00066 void operator=(const vtkImageLogarithmicScale&);
00067 };
00068
00069 #endif
00070
00071
00072