Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Imaging/vtkImageDecomposeFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageDecomposeFilter.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 =========================================================================*/
00042 #ifndef __vtkImageDecomposeFilter_h
00043 #define __vtkImageDecomposeFilter_h
00044 
00045 
00046 #include "vtkImageIterateFilter.h"
00047 
00048 class VTK_IMAGING_EXPORT vtkImageDecomposeFilter : public vtkImageIterateFilter
00049 {
00050 public:
00052 
00054   vtkTypeRevisionMacro(vtkImageDecomposeFilter,vtkImageIterateFilter);
00055   void PrintSelf(ostream& os, vtkIndent indent);
00057 
00059 
00061   void SetDimensionality(int dim);
00062   vtkGetMacro(Dimensionality,int);
00064 
00066 
00067   void PermuteIncrements(int *increments, int &inc0, int &inc1, int &inc2);
00068   void PermuteExtent(int *extent, int &min0, int &max0, int &min1, int &max1,
00069                      int &min2, int &max2);
00071   
00072 protected:
00073   vtkImageDecomposeFilter();
00074   ~vtkImageDecomposeFilter() {};
00075 
00076   int Dimensionality;
00077 
00078 
00079 private:
00080   vtkImageDecomposeFilter(const vtkImageDecomposeFilter&);  // Not implemented.
00081   void operator=(const vtkImageDecomposeFilter&);  // Not implemented.
00082 };
00083 
00084 #endif
00085 
00086 
00087 
00088 
00089 
00090 
00091 
00092 
00093 
00094