1 /*=========================================================================
4 Module: $RCSfile: gdcmRLEFrame.h,v $
6 Date: $Date: 2004/10/08 16:27:20 $
7 Version: $Revision: 1.4 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
20 #ifndef GDCMRLEFRAME_H
21 #define GDCMRLEFRAME_H
23 #include "gdcmCommon.h"
26 * \brief Utility class for summerizing the informations of a SINGLE RLE
27 * frame of an "Encapsulated RLE Compressed Image" (refer to
28 * PS 3.5-2003 annex G).
29 * This information is a mix of:
30 * - the RLE Header (see PS 3.5-2003 section G5) and
31 * - the lengths of each RLE segment [ which can be decuded from
32 * both the above RLE Header and the itemlength of the frame).
34 * Each instance of this class (they can be as many instances for
35 * a given gdcmDocument as they are frames and they are collected in
36 * a \ref gdcmRLEFramesInfo ) describes :
37 * - the total number of segments (up to 15),
38 * - the offsets of each segment of the frame,
39 * - the (corresponding) lengths of each segment of the frame.
41 class GDCM_EXPORT gdcmRLEFrame
43 friend class gdcmDocument;
44 friend class gdcmFile;
45 friend class gdcmPixelConvert;
49 gdcmRLEFrame() { NumberFragments = 0; }
53 //-----------------------------------------------------------------------------