X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=b5f60727f851df43dc4a3fdbebbdb1d6082b6078;hb=90034aefc764a5b6c4815c9073606d36956acab1;hp=5d7c2232c89735c8e76718f7e5e00d4a24beb8d2;hpb=145420342c6af4fc7a257c809a105ecd3d8d85cc;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index 5d7c2232..b5f60727 100644 --- a/src/gdcmRLEFramesInfo.h +++ b/src/gdcmRLEFramesInfo.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFramesInfo.h,v $ Language: C++ - Date: $Date: 2005/01/28 15:42:22 $ - Version: $Revision: 1.13 $ + Date: $Date: 2005/02/11 16:58:49 $ + Version: $Revision: 1.19 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -33,9 +33,9 @@ namespace gdcm * Note: a classical image can be considered as the degenerated case * of a multiframe image. In this case the collection is limited * to a single individual frame. - * The informations on each frame are obtained during the parsing - * of a Document (refer to - * \ref Document::ComputeRLEInfo() ). + * The informations on each frame are obtained during the pixel parsing + * of a gdcm::File (refer to + * \ref File::ComputeRLEInfo() ). * They shall be used when (if necessary) decoding the frames. * * This class is simply a stl list<> of \ref RLEFrame. @@ -45,11 +45,15 @@ class GDCM_EXPORT RLEFramesInfo public: ~RLEFramesInfo(); void Print( std::ostream &os = std::cout, std::string indent = "" ); + bool DecompressRLEFile( std::ifstream *fp, uint8_t *subRaw, int xSize, + int ySize, int zSize, int bitsAllocated ); + bool ConvertRLE16BitsFromRLE8Bits( uint8_t *subRaw, int xSize, int ySize, + int numberOfFrames ); void AddFrame(RLEFrame *frame); RLEFrame *GetFirstFrame(); - RLEFrame *GetNexttFrame(); + RLEFrame *GetNextFrame(); private: typedef std::list RLEFrameList;