itkGE5ImageIO.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00031 #ifndef __itkGE5ImageIO_h
00032 #define __itkGE5ImageIO_h
00033
00034 #ifdef _MSC_VER
00035 #pragma warning ( disable : 4786 )
00036 #endif
00037
00038 #include "itkIPLCommonImageIO.h"
00039 #include "Ge5xHdr.h"
00040
00041 namespace itk
00042 {
00051 class ITK_EXPORT GE5ImageIO : public IPLCommonImageIO
00052 {
00053 public:
00055 typedef GE5ImageIO Self;
00056 typedef IPLCommonImageIO Superclass;
00057 typedef SmartPointer<Self> Pointer;
00058
00060 itkNewMacro(Self);
00061
00063 itkTypeMacro(GE5ImageIO, Superclass);
00064
00065
00066
00073 virtual bool CanReadFile(const char* FileNameToRead);
00074
00076
00077
00078
00080 void ModifyImageInformation();
00081
00083
00084
00085
00087
00088
00089
00093
00094
00095
00096
00097
00104
00105
00106
00108
00109
00110
00113
00114
00115 protected:
00116 GE5ImageIO();
00117 ~GE5ImageIO();
00119
00120 virtual GEImageHeader *ReadHeader(const char *FileNameToRead);
00121 private:
00122 void SwapPixHdr (Ge5xPixelHeader * hdr);
00123 int CheckGE5xImages (char const * const imageFileTemplate, std::string &reason);
00124 GE5ImageIO(const Self&);
00125 void operator=(const Self&);
00126 };
00127
00128 }
00129
00130 #endif // __itkAnalyzeImageIO_h
00131