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