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
00030 #ifndef __vtkImageLogarithmicScale_h
00031 #define __vtkImageLogarithmicScale_h
00032
00033
00034 #include "vtkImageToImageFilter.h"
00035
00036 class VTK_IMAGING_EXPORT vtkImageLogarithmicScale : public vtkImageToImageFilter
00037 {
00038 public:
00039 static vtkImageLogarithmicScale *New();
00040 vtkTypeRevisionMacro(vtkImageLogarithmicScale,vtkImageToImageFilter);
00041 void PrintSelf(ostream& os, vtkIndent indent);
00042
00044
00045 vtkSetMacro(Constant,float);
00046 vtkGetMacro(Constant,float);
00048
00049 protected:
00050 vtkImageLogarithmicScale();
00051 ~vtkImageLogarithmicScale() {};
00052
00053 float Constant;
00054
00055 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData,
00056 int outExt[6], int id);
00057 private:
00058 vtkImageLogarithmicScale(const vtkImageLogarithmicScale&);
00059 void operator=(const vtkImageLogarithmicScale&);
00060 };
00061
00062 #endif
00063
00064
00065