00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkGiplImageIO_h
00018 #define __itkGiplImageIO_h
00019
00020 #ifdef _MSC_VER
00021 #pragma warning ( disable : 4786 )
00022 #endif
00023
00024 #include <fstream>
00025 #include "itkImageIOBase.h"
00026 #include <stdio.h>
00027
00028 namespace itk
00029 {
00030
00036 class ITK_EXPORT GiplImageIO : public ImageIOBase
00037 {
00038 public:
00040 typedef GiplImageIO Self;
00041 typedef ImageIOBase Superclass;
00042 typedef SmartPointer<Self> Pointer;
00043
00045 itkNewMacro(Self);
00046
00048 itkTypeMacro(GiplImageIO, Superclass);
00049
00050
00051
00054 virtual bool CanReadFile(const char*) ;
00055
00057 virtual void ReadImageInformation();
00058
00060 virtual const std::type_info& GetPixelType() const;
00061
00063 virtual void Read(void* buffer);
00064
00068 virtual unsigned int GetComponentSize() const;
00069
00070
00071
00074 virtual bool CanWriteFile(const char*);
00075
00077 virtual void WriteImageInformation();
00078
00081 virtual void Write(const void* buffer);
00082
00083
00084 GiplImageIO();
00085 ~GiplImageIO();
00086 void PrintSelf(std::ostream& os, Indent indent) const;
00087
00088 private:
00089 GiplImageIO(const Self&);
00090 void operator=(const Self&);
00091
00092 void SwapBytesIfNecessary(void* buffer, unsigned long numberOfPixels);
00093
00094 std::ifstream m_Ifstream;
00095 std::ofstream m_Ofstream;
00096
00097 };
00098
00099 }
00100
00101 #endif // __itkGiplImageIO_h