VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkImageExtractComponents.h 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 =========================================================================*/ 00028 #ifndef __vtkImageExtractComponents_h 00029 #define __vtkImageExtractComponents_h 00030 00031 00032 #include "vtkImagingCoreModule.h" // For export macro 00033 #include "vtkThreadedImageAlgorithm.h" 00034 00035 class VTKIMAGINGCORE_EXPORT vtkImageExtractComponents : public vtkThreadedImageAlgorithm 00036 { 00037 public: 00038 static vtkImageExtractComponents *New(); 00039 vtkTypeMacro(vtkImageExtractComponents,vtkThreadedImageAlgorithm); 00040 void PrintSelf(ostream& os, vtkIndent indent); 00041 00043 00044 void SetComponents(int c1); 00045 void SetComponents(int c1, int c2); 00046 void SetComponents(int c1, int c2, int c3); 00047 vtkGetVector3Macro(Components,int); 00049 00051 00053 vtkGetMacro(NumberOfComponents,int); 00055 00056 protected: 00057 vtkImageExtractComponents(); 00058 ~vtkImageExtractComponents() {}; 00059 00060 int NumberOfComponents; 00061 int Components[3]; 00062 00063 virtual int RequestInformation (vtkInformation *, vtkInformationVector**, 00064 vtkInformationVector *); 00065 00066 void ThreadedExecute (vtkImageData *inData, vtkImageData *outData, 00067 int ext[6], int id); 00068 private: 00069 vtkImageExtractComponents(const vtkImageExtractComponents&); // Not implemented. 00070 void operator=(const vtkImageExtractComponents&); // Not implemented. 00071 }; 00072 00073 #endif 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083