X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=c4f44ddbc06043707517ddd2fb9c4ae320389b72;hb=8e6bffaaf0903dff8a0a60f562fd60eeee409bed;hp=a448b69ab9abd02238e6c26adab99aafc0fd4034;hpb=a4cff04fcd2023f798a9f1ef6bc9307269abd185;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index a448b69a..c4f44ddb 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/26 11:42:02 $ - Version: $Revision: 1.11 $ + Date: $Date: 2006/02/16 20:06:15 $ + Version: $Revision: 1.21 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -26,7 +26,6 @@ namespace gdcm { - /** * \brief Utility class for gathering the informations of the collection * of RLE frame[s] (see \ref RLEFrame) when handling @@ -34,26 +33,35 @@ 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. */ class GDCM_EXPORT RLEFramesInfo { -public: +friend class PixelReadConvert; +friend class File; + +private: ~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 ); -private: - typedef std::list< RLEFrame* > RLEFrameList; + void AddFrame(RLEFrame *frame); - RLEFrameList Frames; + RLEFrame *GetFirstFrame(); + RLEFrame *GetNextFrame(); + + typedef std::list RLEFrameList; - friend class Document; - friend class PixelReadConvert; + RLEFrameList Frames; + RLEFrameList::iterator ItFrames; }; } // end namespace gdcm