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

vtkImageRGBToHSI.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageRGBToHSI.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 __vtkImageRGBToHSI_h
00038 #define __vtkImageRGBToHSI_h
00039 
00040 #include "vtkThreadedImageAlgorithm.h"
00041 
00042 class VTK_IMAGING_EXPORT vtkImageRGBToHSI : public vtkThreadedImageAlgorithm
00043 {
00044 public:
00045   static vtkImageRGBToHSI *New();
00046   vtkTypeRevisionMacro(vtkImageRGBToHSI,vtkThreadedImageAlgorithm);
00047   void PrintSelf(ostream& os, vtkIndent indent);
00048 
00050 
00054   vtkSetMacro(Maximum,double);
00055   vtkGetMacro(Maximum,double);
00057   
00058 protected:
00059   vtkImageRGBToHSI();
00060   ~vtkImageRGBToHSI() {};
00061 
00062   double Maximum;
00063   
00064   void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
00065                        int ext[6], int id);
00066 
00067 private:
00068   vtkImageRGBToHSI(const vtkImageRGBToHSI&);  // Not implemented.
00069   void operator=(const vtkImageRGBToHSI&);  // Not implemented.
00070 };
00071 
00072 #endif
00073 
00074 
00075