00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkNrrdImageIO_h
00018 #define __itkNrrdImageIO_h
00019
00020 #ifdef _MSC_VER
00021 #pragma warning ( disable : 4786 )
00022 #endif
00023
00024 #include "itkImageIOBase.h"
00025 #include <fstream>
00026 #include "NrrdIO/NrrdIO.h"
00027
00028 namespace itk
00029 {
00030
00039 class ITK_EXPORT NrrdImageIO : public ImageIOBase
00040 {
00041 public:
00043 typedef NrrdImageIO Self;
00044 typedef ImageIOBase Superclass;
00045 typedef SmartPointer<Self> Pointer;
00046
00048 itkNewMacro(Self);
00049
00051 itkTypeMacro(NrrdImageIO, ImageIOBase);
00052
00058 virtual bool SupportsDimension(unsigned long );
00059
00062 virtual bool CanReadFile(const char*);
00063
00065 virtual void ReadImageInformation();
00066
00068 virtual void Read(void* buffer);
00069
00072 virtual bool CanWriteFile(const char*);
00073
00075 virtual void WriteImageInformation();
00076
00079 virtual void Write(const void* buffer);
00080
00081 protected:
00082 NrrdImageIO() {}
00083 ~NrrdImageIO() {}
00084 void PrintSelf(std::ostream& os, Indent indent) const;
00085
00088 int ITKToNrrdComponentType( const ImageIOBase::IOComponentType ) const;
00089 ImageIOBase::IOComponentType NrrdToITKComponentType( const int ) const;
00090
00091 private:
00092 NrrdImageIO(const Self&);
00093 void operator=(const Self&);
00094
00095 };
00096
00097 }
00098
00099 #endif // __itkNrrdImageIO_h