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

Imaging/vtkImageEuclideanToPolar.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageEuclideanToPolar.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 __vtkImageEuclideanToPolar_h
00026 #define __vtkImageEuclideanToPolar_h
00027 
00028 
00029 #include "vtkImageToImageFilter.h"
00030 
00031 class VTK_IMAGING_EXPORT vtkImageEuclideanToPolar : public vtkImageToImageFilter
00032 {
00033 public:
00034   static vtkImageEuclideanToPolar *New();
00035   vtkTypeRevisionMacro(vtkImageEuclideanToPolar,vtkImageToImageFilter);
00036   void PrintSelf(ostream& os, vtkIndent indent);
00037 
00039 
00042   vtkSetMacro(ThetaMaximum,double);
00043   vtkGetMacro(ThetaMaximum,double);
00045   
00046 protected:
00047   vtkImageEuclideanToPolar();
00048   ~vtkImageEuclideanToPolar() {};
00049 
00050   double ThetaMaximum;
00051   
00052   void ThreadedExecute(vtkImageData *inData, vtkImageData *outData,
00053                        int ext[6], int id);
00054 private:
00055   vtkImageEuclideanToPolar(const vtkImageEuclideanToPolar&);  // Not implemented.
00056   void operator=(const vtkImageEuclideanToPolar&);  // Not implemented.
00057 };
00058 
00059 #endif
00060 
00061 
00062