X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmHeader.h;h=87a10f130f0fc6d296d82dc60fc3883f8878adc2;hb=1d6b53d6cc3487013b10aa9b604ae948585dbfb7;hp=b521ed312d2e6665c4675ccde06133e05c84fc89;hpb=ab62b1a706df8e2ab1fbf26fa5037d6c22293655;p=gdcm.git diff --git a/src/gdcmHeader.h b/src/gdcmHeader.h index b521ed31..87a10f13 100644 --- a/src/gdcmHeader.h +++ b/src/gdcmHeader.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmHeader.h,v $ Language: C++ - Date: $Date: 2004/08/02 16:42:14 $ - Version: $Revision: 1.86 $ + Date: $Date: 2005/01/11 23:06:35 $ + Version: $Revision: 1.100 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or - http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details. + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -19,28 +19,10 @@ #ifndef GDCMHEADER_H #define GDCMHEADER_H -#include "gdcmCommon.h" #include "gdcmDocument.h" -//----------------------------------------------------------------------------- -/** - * \brief - * The purpose of an instance of gdcmHeader is to act as a container of - * all the DICOM elements and their corresponding values (and - * additionaly the corresponding DICOM dictionary entry) of the header - * of a DICOM file. - * - * The typical usage of instances of class gdcmHeader is to classify a set of - * dicom files according to header information e.g. to create a file hierarchy - * reflecting the Patient/Study/Serie informations, or extracting a given - * SerieId. Accessing the content (image[s] or volume[s]) is beyond the - * functionality of this class and belongs to gdmcFile. - * \note The various entries of the explicit value representation (VR) shall - * be managed within a dictionary which is shared by all gdcmHeader - * instances. - * \note The gdcmHeader::Set*Tag* family members cannot be defined as - * protected due to Swig limitations for as Has_a dependency between - * gdcmFile and gdcmHeader. - */ + +namespace gdcm +{ //----------------------------------------------------------------------------- // Dicom Part 3.3 Compliant @@ -88,32 +70,52 @@ enum ModalityType { XA, // X-Ray Angiography XC // Photographic Imaging }; + //----------------------------------------------------------------------------- +/** + * \brief DICOM elements and their corresponding values (and + * additionaly the corresponding DICOM dictionary entry) of the header + * of a DICOM file. + * + * The typical usage of instances of class Header is to classify a set of + * dicom files according to header information e.g. to create a file hierarchy + * reflecting the Patient/Study/Serie informations, or extracting a given + * SerieId. Accessing the content (image[s] or volume[s]) is beyond the + * functionality of this class and belongs to gdmcFile. + * \note The various entries of the explicit value representation (VR) shall + * be managed within a dictionary which is shared by all Header + * instances. + * \note The Header::Set*Tag* family members cannot be defined as + * protected due to Swig limitations for as Has_a dependency between + * File and Header. + */ -class GDCM_EXPORT gdcmHeader : public gdcmDocument +//----------------------------------------------------------------------------- + +class GDCM_EXPORT Header : public Document { protected: /// \brief In some cases (e.g. for some ACR-NEMA images) the Header Entry Element /// Number of the 'Pixel Element' is *not* found at 0x0010. In order to /// make things easier the parser shall store the proper value in /// NumPixel to provide a unique access facility. See also the constructor - /// \ref gdcmHeader::gdcmHeader + /// \ref Header::Header uint16_t NumPixel; /// \brief In some cases (e.g. for some ACR-NEMA images) the header entry for /// the group of pixels is *not* found at 0x7fe0. In order to /// make things easier the parser shall store the proper value in /// GrPixel to provide a unique access facility. See also the constructor - /// \ref gdcmHeader::gdcmHeader + /// \ref Header::Header uint16_t GrPixel; public: - gdcmHeader(); - gdcmHeader( std::string const & filename ); + Header(); + Header( std::string const &filename ); - virtual ~gdcmHeader(); + ~Header(); // Standard values and informations contained in the header - virtual bool IsReadable(); + bool IsReadable(); // Some heuristic based accessors, end user intended int GetBitsStored(); @@ -121,6 +123,11 @@ public: int GetSamplesPerPixel(); int GetPlanarConfiguration(); int GetPixelSize(); + int GetHighBitPosition(); + bool IsSignedPixelData(); + bool IsMonochrome(); + bool IsPaletteColor(); + bool IsYBRFull(); std::string GetPixelType(); size_t GetPixelOffset(); @@ -134,7 +141,6 @@ public: float GetXSpacing(); float GetYSpacing(); float GetZSpacing(); - //void GetSpacing(float &x, float &y, float &z); // Useful for rescaling graylevel: float GetRescaleIntercept(); @@ -149,32 +155,33 @@ public: float GetXOrigin(); float GetYOrigin(); float GetZOrigin(); - //void GetOrigin(float &x, float &y, float &z); bool HasLUT(); int GetLUTNbits(); - unsigned char * GetLUTRGBA(); - std::string GetTransfertSyntaxName(); - - /// Accessor to \ref gdcmHeader::GrPixel + /// Accessor to \ref Header::GrPixel uint16_t GetGrPixel() { return GrPixel; } - /// Accessor to \ref gdcmHeader::NumPixel + /// Accessor to \ref Header::NumPixel uint16_t GetNumPixel() { return NumPixel; } - /// Read (used in gdcmFile) - 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: - friend class gdcmSerieHeader; + friend class SerieHeader; }; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif