X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=d4280bd2b665a4dbf7042df01cc1f5d20d7f26c9;hb=f540ed5835e7b89478e6048a577d494c0e156f2a;hp=3bc1058ad711ca44975f04ca42808ee040c3c37c;hpb=64f79e8efbfae49231d1f469aa4fcc4acf0da70c;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index 3bc1058a..d4280bd2 100644 --- a/src/gdcmRLEFramesInfo.h +++ b/src/gdcmRLEFramesInfo.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFramesInfo.h,v $ Language: C++ - Date: $Date: 2004/10/06 09:58:08 $ - Version: $Revision: 1.1 $ + Date: $Date: 2006/03/29 16:09:48 $ + Version: $Revision: 1.22 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,30 +21,49 @@ #define GDCMRLEFRAMESINFO_H #include "gdcmRLEFrame.h" + #include +namespace gdcm +{ /** * \brief Utility class for gathering the informations of the collection - * of RLE frame[s] (see \ref gdcmRLEFrame) when handling - * "Encapsulated RLE Compressed Images" (see PS-3.3 annex G). + * of RLE frame[s] (see \ref RLEFrame) when handling + * "Encapsulated RLE Compressed Images" (see PS 3.5-2003 annex G). * 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 gdcmDocument (refer to \ref gdcmDocument::Parse7FE0() ). + * 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 gdcmRLEFrame. + * This class is simply a stl list<> of \ref RLEFrame. */ -class GDCM_EXPORT gdcmRLEFramesInfo +class GDCM_EXPORT RLEFramesInfo { - typedef std::list< gdcmRLEFrame* > RLEFrameList; -friend class gdcmDocument; -friend class gdcmFile; +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 tSize, int bitsAllocated ); + bool ConvertRLE16BitsFromRLE8Bits( uint8_t *subRaw, int xSize, int ySize, + int tSize, int numberOfFrames); + + void AddFrame(RLEFrame *frame); + + RLEFrame *GetFirstFrame(); + RLEFrame *GetNextFrame(); + + typedef std::list RLEFrameList; + RLEFrameList Frames; -public: - ~gdcmRLEFramesInfo(); + RLEFrameList::iterator ItFrames; }; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif