X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmHeader.h;h=8c56bdd042384a8229ab3c85044aadb161288eea;hb=7059f7f1ad9d1466d7b752a40cfeb95ba81aa3d8;hp=684b99aac0d2641d1caebf7fc3654684111f981d;hpb=e28b183ba68aa3cc84a44a779a31f9d906a1ad2f;p=gdcm.git diff --git a/src/gdcmHeader.h b/src/gdcmHeader.h index 684b99aa..8c56bdd0 100644 --- a/src/gdcmHeader.h +++ b/src/gdcmHeader.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmHeader.h,v $ Language: C++ - Date: $Date: 2004/10/18 12:49:22 $ - Version: $Revision: 1.90 $ + Date: $Date: 2005/01/06 20:03:28 $ + Version: $Revision: 1.97 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,12 +19,10 @@ #ifndef GDCMHEADER_H #define GDCMHEADER_H -#include "gdcmCommon.h" #include "gdcmDocument.h" + namespace gdcm { - - //----------------------------------------------------------------------------- /** * \brief @@ -112,12 +110,12 @@ protected: public: Header(); - Header( std::string const & filename ); + Header( std::string const &filename ); - virtual ~Header(); + ~Header(); // Standard values and informations contained in the header - virtual bool IsReadable(); + bool IsReadable(); // Some heuristic based accessors, end user intended int GetBitsStored(); @@ -143,7 +141,6 @@ public: float GetXSpacing(); float GetYSpacing(); float GetZSpacing(); - //void GetSpacing(float &x, float &y, float &z); // Useful for rescaling graylevel: float GetRescaleIntercept(); @@ -158,11 +155,11 @@ public: float GetXOrigin(); float GetYOrigin(); float GetZOrigin(); - //void GetOrigin(float &x, float &y, float &z); bool HasLUT(); int GetLUTNbits(); + /// Return the Transfer Syntax as a string std::string GetTransfertSyntaxName(); /// Accessor to \ref Header::GrPixel @@ -171,13 +168,17 @@ public: /// Accessor to \ref Header::NumPixel uint16_t GetNumPixel() { return NumPixel; } - /// Read (used in File) - void SetImageDataSize(size_t expectedSize); + bool Write(std::string fileName, FileType filetype); - void Write(FILE* fp, FileType filetype); + /// Initialize DICOM header when none + void InitializeDefaultHeader(); protected: + /// Replace patient's specific information by 'anonymous' bool AnonymizeHeader(); + + /// Helper function needed to organize DICOM files based on + /// their x,y,z position void GetImageOrientationPatient( float iop[6] ); private: