X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=b5f60727f851df43dc4a3fdbebbdb1d6082b6078;hb=3f8964856e65c2447beab900b04a63d003192bf9;hp=8994ed8e483afa17d0e40042f202ccdc73993583;hpb=da6bc02a3bb5627685bd70f5503305a7f9b3d7cd;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index 8994ed8e..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: 2004/10/10 16:44:00 $ - Version: $Revision: 1.4 $ + 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 @@ -21,32 +21,47 @@ #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 + * 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::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 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 gdcmPixelConvert; - RLEFrameList Frames; public: - ~gdcmRLEFramesInfo(); + ~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 *GetNextFrame(); + +private: + typedef std::list RLEFrameList; + + RLEFrameList Frames; + RLEFrameList::iterator ItFrames; }; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif