X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmHeader.h;h=8940f0e380d80c04bf9f35370d258b41678146ac;hb=1867926fc5b21e95022b419e33ae7da1334ee394;hp=c5afb10b8b484a08c1ea425d5b416b74a61dcfe3;hpb=4c8c80589b3770976ea27fc03b290b97db5da3e6;p=gdcm.git diff --git a/src/gdcmHeader.h b/src/gdcmHeader.h index c5afb10b..8940f0e3 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/07/30 11:40:13 $ - Version: $Revision: 1.82 $ + Date: $Date: 2004/09/29 17:33:17 $ + Version: $Revision: 1.88 $ 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 @@ -107,10 +107,8 @@ protected: uint16_t GrPixel; public: - gdcmHeader(bool exception_on_error = false); - gdcmHeader(std::string const & filename, - bool exception_on_error = false, - bool skip_shadow = false); + gdcmHeader(); + gdcmHeader( std::string const & filename ); virtual ~gdcmHeader(); @@ -123,6 +121,11 @@ public: int GetSamplesPerPixel(); int GetPlanarConfiguration(); int GetPixelSize(); + int GetHighBitPosition(); + bool IsSignedPixelData(); + bool IsMonochrome(); + bool IsPaletteColor(); + bool IsYBRFull(); std::string GetPixelType(); size_t GetPixelOffset(); @@ -168,11 +171,11 @@ public: /// Read (used in gdcmFile) void SetImageDataSize(size_t expectedSize); - void gdcmHeader::Write(FILE* fp,FileType filetype); + void Write(FILE* fp, FileType filetype); protected: bool AnonymizeHeader(); - void GetImageOrientationPatient( float* iop ); + void GetImageOrientationPatient( float iop[6] ); private: friend class gdcmSerieHeader;