Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | 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 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
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&);  // Not implemented.
00066   void operator=(const vtkImageLogarithmicScale&);  // Not implemented.
00067 };
00068 
00069 #endif
00070 
00071 
00072