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

vtkImageDecomposeFilter.h

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