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

vtkImageLogarithmicScale.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageLogarithmicScale.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 =========================================================================*/
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&);  // Not implemented.
00059   void operator=(const vtkImageLogarithmicScale&);  // Not implemented.
00060 };
00061 
00062 #endif
00063 
00064 
00065