]> Creatis software - gdcm.git/blob - src/gdcmRLEFramesInfo.cxx
* src/*.cxx : first parss to normalize file organisation
[gdcm.git] / src / gdcmRLEFramesInfo.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmRLEFramesInfo.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/02/01 10:29:56 $
7   Version:   $Revision: 1.11 $
8                                                                                 
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.
12                                                                                 
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.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmRLEFramesInfo.h"
20 #include "gdcmDebug.h"
21
22 namespace gdcm 
23 {
24 //-------------------------------------------------------------------------
25 // Constructor / Destructor
26 RLEFramesInfo::~RLEFramesInfo()
27 {
28    for(RLEFrameList::iterator it = Frames.begin(); it != Frames.end(); ++it)
29    {
30       delete (*it);
31    }
32    Frames.clear();
33 }
34
35 //-----------------------------------------------------------------------------
36 // Public
37 void RLEFramesInfo::AddFrame(RLEFrame *frame)
38 {
39    Frames.push_back(frame);
40 }
41
42 RLEFrame *RLEFramesInfo::GetFirstFrame()
43 {
44    ItFrames = Frames.begin();
45    if (ItFrames != Frames.end())
46       return  *ItFrames;
47    return NULL;
48 }
49
50 RLEFrame *RLEFramesInfo::GetNextFrame()
51 {
52    gdcmAssertMacro (ItFrames != Frames.end());
53
54    ++ItFrames;
55    if (ItFrames != Frames.end())
56       return  *ItFrames;
57    return NULL;
58 }
59
60 /**
61  * \brief     Reads from disk the Pixel Data of 'Run Length Encoded'
62  *            Dicom encapsulated file and decompress it.
63  * @param     fp already open File Pointer
64  *            at which the pixel data should be copied
65  * @return    Boolean
66  */
67 bool RLEFramesInfo::DecompressRLEFile( std::ifstream *fp , uint8_t *raw, int xSize, int ySize, int zSize, int bitsAllocated )
68 {
69    uint8_t *subRaw = raw;
70    long rawSegmentSize = xSize * ySize;
71
72    // Loop on the frame[s]
73    for(RLEFrameList::iterator it = Frames.begin(); it != Frames.end(); ++it)
74    {
75       subRaw = (*it)->ReadAndDecompressRLEFrame( subRaw, rawSegmentSize, fp);
76    }
77
78    if ( bitsAllocated == 16 )
79    {
80       // Try to deal with RLE 16 Bits
81       ConvertRLE16BitsFromRLE8Bits( raw, xSize, ySize, zSize );
82    }
83
84    return true;
85 }
86
87 /**
88  * \brief     Try to deal with RLE 16 Bits. 
89  *            We assume the RLE has already been parsed and loaded in
90  *            Raw (through \ref ReadAndDecompressJPEGFile ).
91  *            We here need to make 16 Bits Pixels from Low Byte and
92  *            High Byte 'Planes'...(for what it may mean)
93  * @return    Boolean
94  */
95 bool RLEFramesInfo::ConvertRLE16BitsFromRLE8Bits( uint8_t* raw, int xSize, 
96                                              int ySize,int numberOfFrames  )
97 {
98    size_t pixelNumber = xSize * ySize;
99    size_t rawSize = xSize * ySize * numberOfFrames;
100
101    // We assumed Raw contains the decoded RLE pixels but as
102    // 8 bits per pixel. In order to convert those pixels to 16 bits
103    // per pixel we cannot work in place within Raw and hence
104    // we copy it in a safe place, say copyRaw.
105
106    uint8_t* copyRaw = new uint8_t[rawSize * 2];
107    memmove( copyRaw, raw, rawSize * 2 );
108
109    uint8_t* x = raw;
110    uint8_t* a = copyRaw;
111    uint8_t* b = a + pixelNumber;
112
113    for ( int i = 0; i < numberOfFrames; i++ )
114    {
115       for ( unsigned int j = 0; j < pixelNumber; j++ )
116       {
117          *(x++) = *(b++);
118          *(x++) = *(a++);
119       }
120    }
121
122    delete[] copyRaw;
123       
124    /// \todo check that operator new []didn't fail, and sometimes return false
125    return true;
126 }
127
128 //-----------------------------------------------------------------------------
129 // Protected
130
131 //-----------------------------------------------------------------------------
132 // Private
133
134 //-----------------------------------------------------------------------------
135 // Print
136 /**
137  * \brief        Print self.
138  * @param indent Indentation string to be prepended during printing.
139  * @param os     Stream to print to.
140  */
141 void RLEFramesInfo::Print( std::ostream &os, std::string indent )
142 {
143    os << std::endl;
144    os << indent
145       << "----------------- RLE frames --------------------------------"
146       << std::endl;
147    os << indent
148       << "Total number of Frames : " << Frames.size()
149       << std::endl;
150    int frameNumber = 0;
151    for(RLEFrameList::iterator it = Frames.begin(); it != Frames.end(); ++it)
152    {
153       os << indent
154          << "   frame number :" << frameNumber++
155          << std::endl;
156       (*it)->Print( os, indent + "   " );
157    }
158 }
159
160 //-----------------------------------------------------------------------------
161 } // end namespace gdcm