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

dox/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 =========================================================================*/
00029 #ifndef __vtkImageDecomposeFilter_h
00030 #define __vtkImageDecomposeFilter_h
00031 
00032 
00033 #include "vtkImageIterateFilter.h"
00034 
00035 class VTK_IMAGING_EXPORT vtkImageDecomposeFilter : public vtkImageIterateFilter
00036 {
00037 public:
00039 
00041   vtkTypeRevisionMacro(vtkImageDecomposeFilter,vtkImageIterateFilter);
00042   void PrintSelf(ostream& os, vtkIndent indent);
00044 
00046 
00048   void SetDimensionality(int dim);
00049   vtkGetMacro(Dimensionality,int);
00051 
00053 
00054   void PermuteIncrements(int *increments, int &inc0, int &inc1, int &inc2);
00055   void PermuteExtent(int *extent, int &min0, int &max0, int &min1, int &max1,
00056                      int &min2, int &max2);
00058   
00059 protected:
00060   vtkImageDecomposeFilter();
00061   ~vtkImageDecomposeFilter() {};
00062 
00063   int Dimensionality;
00064 
00065 
00066 private:
00067   vtkImageDecomposeFilter(const vtkImageDecomposeFilter&);  // Not implemented.
00068   void operator=(const vtkImageDecomposeFilter&);  // Not implemented.
00069 };
00070 
00071 #endif
00072 
00073 
00074 
00075 
00076 
00077 
00078 
00079 
00080 
00081