X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=f4dc27875ff1bb087b7465ee134d28f6f56b387f;hb=8e10ae94ea66aca5adf40e66521fba9c736628c4;hp=5afa003e99f36d435e9e6fb11fb22bfc0894187b;hpb=5bf7c51796867388334836847a6874640bc83f89;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index 5afa003e..f4dc2787 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/20 14:30:40 $ - Version: $Revision: 1.6 $ + Date: $Date: 2005/01/31 06:17:22 $ + Version: $Revision: 1.17 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,10 +21,11 @@ #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 RLEFrame) when handling @@ -32,23 +33,31 @@ 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 { - typedef std::list< RLEFrame* > RLEFrameList; -friend class Document; -friend class File; -friend class PixelConvert; - RLEFrameList Frames; public: ~RLEFramesInfo(); - void Print( std::string indent = "", std::ostream &os = std::cout ); + 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