Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class 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 
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 =========================================================================*/
00025 #ifndef __vtkImageDecomposeFilter_h
00026 #define __vtkImageDecomposeFilter_h
00027 
00028 
00029 #include "vtkImageIterateFilter.h"
00030 
00031 class VTK_IMAGING_EXPORT vtkImageDecomposeFilter : public vtkImageIterateFilter
00032 {
00033 public:
00035 
00037   vtkTypeRevisionMacro(vtkImageDecomposeFilter,vtkImageIterateFilter);
00038   void PrintSelf(ostream& os, vtkIndent indent);
00040 
00042 
00044   void SetDimensionality(int dim);
00045   vtkGetMacro(Dimensionality,int);
00047 
00049 
00050   void PermuteIncrements(int *increments, int &inc0, int &inc1, int &inc2);
00051   void PermuteExtent(int *extent, int &min0, int &max0, int &min1, int &max1,
00052                      int &min2, int &max2);
00054   
00055 protected:
00056   vtkImageDecomposeFilter();
00057   ~vtkImageDecomposeFilter() {};
00058 
00059   int Dimensionality;
00060 
00061 
00062 private:
00063   vtkImageDecomposeFilter(const vtkImageDecomposeFilter&);  // Not implemented.
00064   void operator=(const vtkImageDecomposeFilter&);  // Not implemented.
00065 };
00066 
00067 #endif
00068 
00069 
00070 
00071 
00072 
00073 
00074 
00075 
00076 
00077