Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkVTKImageIO.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkVTKImageIO.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/01/08 07:00:22 $
00007   Version:   $Revision: 1.11 $
00008 
00009   Copyright (c) 2002 Insight Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012   Portions of this code are covered under the VTK copyright.
00013   See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm for details.
00014 
00015      This software is distributed WITHOUT ANY WARRANTY; without even 
00016      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00017      PURPOSE.  See the above copyright notices for more information.
00018 
00019 =========================================================================*/
00020 #ifndef __itkVTKImageIO_h
00021 #define __itkVTKImageIO_h
00022 
00023 #include <fstream>
00024 #include "itkImageIOBase.h"
00025 
00026 
00027 namespace itk
00028 {
00029 
00035 class ITK_EXPORT VTKImageIO : public ImageIOBase
00036 {
00037 public:
00039   typedef VTKImageIO            Self;
00040   typedef ImageIOBase  Superclass;
00041   typedef SmartPointer<Self>  Pointer;
00042   
00044   itkNewMacro(Self);
00045 
00047   itkTypeMacro(VTKImageIO, Superclass);
00048 
00049   /*-------- This part of the interface deals with reading data. ------ */
00050 
00053   virtual bool CanReadFile(const char*);
00054   
00056   virtual void ReadImageInformation();
00057   
00059   virtual void Read(void* buffer);
00060 
00061   /*-------- This part of the interfaces deals with writing data. ----- */
00062 
00065   virtual bool CanWriteFile(const char*);
00066 
00069   virtual void WriteImageInformation() {};
00070   
00073   virtual void Write(const void* buffer);
00074 
00075 protected:
00076   VTKImageIO();
00077   ~VTKImageIO();
00078   void PrintSelf(std::ostream& os, Indent indent) const;
00079 
00080   bool OpenVTKFileForReading(std::ifstream& os, const char* filename);
00081   bool OpenVTKFileForWriting(std::ofstream& os, const char* filename);
00082   void InternalReadImageInformation(std::ifstream& file);
00083 
00084 private:
00085   VTKImageIO(const Self&); //purposely not implemented
00086   void operator=(const Self&); //purposely not implemented
00087 };
00088 
00089 } // end namespace itk
00090 
00091 #endif // __itkVTKImageIO_h

Generated at Fri May 21 01:15:38 2004 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000