]> Creatis software - gdcm.git/blob - src/gdcmPixelConvert.cxx
ENH: gdcm now compiles on borland
[gdcm.git] / src / gdcmPixelConvert.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmPixelConvert.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/11/09 21:55:56 $
7   Version:   $Revision: 1.26 $
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 //////////////////   TEMPORARY NOTE
20 // look for "fixMem" and convert that to a member of this class
21 // Removing the prefix fixMem and dealing with allocations should do the trick
22 //
23 // grep PIXELCONVERT everywhere and clean up !
24
25 #include "gdcmDebug.h"
26 #include "gdcmPixelConvert.h"
27 #include <fstream>
28 #include <stdio.h>
29
30 namespace gdcm
31 {
32 #define str2num(str, typeNum) *((typeNum *)(str))
33
34 // For JPEG 2000, body in file gdcmJpeg2000.cxx
35 bool gdcm_read_JPEG2000_file (std::ifstream* fp, void* image_buffer);
36
37 // For JPEG 8 Bits, body in file gdcmJpeg8.cxx
38 bool gdcm_read_JPEG_file8    (std::ifstream* fp, void* image_buffer);
39
40 // For JPEG 12 Bits, body in file gdcmJpeg12.cxx
41 bool gdcm_read_JPEG_file12   (std::ifstream* fp, void* image_buffer);
42
43 // For JPEG 16 Bits, body in file gdcmJpeg16.cxx
44 // Beware this is misleading there is no 16bits DCT algorithm, only
45 // jpeg lossless compression exist in 16bits.
46 bool gdcm_read_JPEG_file16   (std::ifstream* fp, void* image_buffer);
47
48
49 //-----------------------------------------------------------------------------
50 // Constructor / Destructor
51 PixelConvert::PixelConvert() 
52 {
53    RGB = 0;
54    RGBSize = 0;
55    Decompressed = 0;
56    DecompressedSize = 0;
57    LutRGBA = 0;
58    LutRedData = 0;
59    LutGreenData = 0;
60    LutBlueData =0;
61 }
62
63 void PixelConvert::Squeeze() 
64 {
65    if ( RGB )
66    {
67       delete [] RGB;
68    } 
69    if ( Decompressed )
70    {
71       delete [] Decompressed;
72    }
73    if ( LutRGBA )
74    {
75       delete [] LutRGBA;
76    }
77 }
78
79 PixelConvert::~PixelConvert() 
80 {
81    Squeeze();
82 }
83
84 void PixelConvert::AllocateRGB()
85 {
86   if ( RGB ) {
87      delete [] RGB;
88   }
89   RGB = new uint8_t[ RGBSize ];
90 }
91
92 void PixelConvert::AllocateDecompressed()
93 {
94   if ( Decompressed ) {
95      delete [] Decompressed;
96   }
97   Decompressed = new uint8_t[ DecompressedSize ];
98 }
99
100 /**
101  * \brief Read from file a 12 bits per pixel image and decompress it
102  *        into a 16 bits per pixel image.
103  */
104 void PixelConvert::ReadAndDecompress12BitsTo16Bits( std::ifstream* fp )
105                throw ( FormatError )
106 {
107    int nbPixels = XSize * YSize;
108    uint16_t* localDecompres = (uint16_t*)Decompressed;
109
110    for( int p = 0; p < nbPixels; p += 2 )
111    {
112       uint8_t b0, b1, b2;
113
114       fp->read( (char*)&b0, 1);
115       if ( fp->fail() || fp->eof() )//Fp->gcount() == 1
116       {
117          throw FormatError( "PixelConvert::ReadAndDecompress12BitsTo16Bits()",
118                                 "Unfound first block" );
119       }
120
121       fp->read( (char*)&b1, 1 );
122       if ( fp->fail() || fp->eof())//Fp->gcount() == 1
123       {
124          throw FormatError( "PixelConvert::ReadAndDecompress12BitsTo16Bits()",
125                                 "Unfound second block" );
126       }
127
128       fp->read( (char*)&b2, 1 );
129       if ( fp->fail() || fp->eof())//Fp->gcount() == 1
130       {
131          throw FormatError( "PixelConvert::ReadAndDecompress12BitsTo16Bits()",
132                                 "Unfound second block" );
133       }
134
135       // Two steps are necessary to please VC++
136       //
137       // 2 pixels 12bit =     [0xABCDEF]
138       // 2 pixels 16bit = [0x0ABD] + [0x0FCE]
139       //                        A                     B                 D
140       *localDecompres++ =  ((b0 >> 4) << 8) + ((b0 & 0x0f) << 4) + (b1 & 0x0f);
141       //                        F                     C                 E
142       *localDecompres++ =  ((b2 & 0x0f) << 8) + ((b1 >> 4) << 4) + (b2 >> 4);
143
144       /// \todo JPR Troubles expected on Big-Endian processors ?
145    }
146 }
147
148 /**
149  * \brief     Try to deal with RLE 16 Bits. 
150  *            We assume the RLE has allready been parsed and loaded in
151  *            Decompressed (through \ref ReadAndDecompressJPEGFile ).
152  *            We here need to make 16 Bits Pixels from Low Byte and
153  *            High Byte 'Planes'...(for what it may mean)
154  * @return    Boolean
155  */
156 bool PixelConvert::DecompressRLE16BitsFromRLE8Bits( int NumberOfFrames )
157 {
158    size_t PixelNumber = XSize * YSize;
159    size_t decompressedSize = XSize * YSize * NumberOfFrames;
160
161    // We assumed Decompressed contains the decoded RLE pixels but as
162    // 8 bits per pixel. In order to convert those pixels to 16 bits
163    // per pixel we cannot work in place within Decompressed and hence
164    // we copy it in a safe place, say copyDecompressed.
165
166    uint8_t* copyDecompressed = new uint8_t[ decompressedSize * 2 ];
167    memmove( copyDecompressed, Decompressed, decompressedSize * 2 );
168
169    uint8_t* x = Decompressed;
170    uint8_t* a = copyDecompressed;
171    uint8_t* b = a + PixelNumber;
172
173    for ( int i = 0; i < NumberOfFrames; i++ )
174    {
175       for ( unsigned int j = 0; j < PixelNumber; j++ )
176       {
177          *(x++) = *(b++);
178          *(x++) = *(a++);
179       }
180    }
181
182    delete[] copyDecompressed;
183       
184    /// \todo check that operator new []didn't fail, and sometimes return false
185    return true;
186 }
187
188 /**
189  * \brief Implementation of the RLE decoding algorithm for decompressing
190  *        a RLE fragment. [refer to PS 3.5-2003, section G.3.2 p 86]
191  * @param subDecompressed Sub region of \ref Decompressed where the de
192  *        decoded fragment should be placed.
193  * @param fragmentSize The length of the binary fragment as found on the disk.
194  * @param decompressedSegmentSize The expected length of the fragment ONCE
195  *        decompressed.
196  * @param fp File Pointer: on entry the position should be the one of
197  *        the fragment to be decoded.
198  */
199 bool PixelConvert::ReadAndDecompressRLEFragment( uint8_t* subDecompressed,
200                                                  long fragmentSize,
201                                                  long decompressedSegmentSize,
202                                                  std::ifstream* fp )
203 {
204    int8_t count;
205    long numberOfOutputBytes = 0;
206    long numberOfReadBytes = 0;
207
208    while( numberOfOutputBytes < decompressedSegmentSize )
209    {
210       fp->read( (char*)&count, 1 );
211       numberOfReadBytes += 1;
212       if ( count >= 0 )
213       // Note: count <= 127 comparison is always true due to limited range
214       //       of data type int8_t [since the maximum of an exact width
215       //       signed integer of width N is 2^(N-1) - 1, which for int8_t
216       //       is 127].
217       {
218          fp->read( (char*)subDecompressed, count + 1);
219          numberOfReadBytes   += count + 1;
220          subDecompressed     += count + 1;
221          numberOfOutputBytes += count + 1;
222       }
223       else
224       {
225          if ( ( count <= -1 ) && ( count >= -127 ) )
226          {
227             int8_t newByte;
228             fp->read( (char*)&newByte, 1);
229             numberOfReadBytes += 1;
230             for( int i = 0; i < -count + 1; i++ )
231             {
232                subDecompressed[i] = newByte;
233             }
234             subDecompressed     += -count + 1;
235             numberOfOutputBytes += -count + 1;
236          }
237       }
238       // if count = 128 output nothing
239                                                                                 
240       if ( numberOfReadBytes > fragmentSize )
241       {
242          dbg.Verbose(0, "PixelConvert::ReadAndDecompressRLEFragment: we "
243                         "read more bytes than the segment size.");
244          return false;
245       }
246    }
247    return true;
248 }
249
250 /**
251  * \brief     Reads from disk the Pixel Data of 'Run Length Encoded'
252  *            Dicom encapsulated file and decompress it.
253  * @param     fp already open File Pointer
254  *            at which the pixel data should be copied
255  * @return    Boolean
256  */
257 bool PixelConvert::ReadAndDecompressRLEFile( std::ifstream* fp )
258 {
259    uint8_t* subDecompressed = Decompressed;
260    long decompressedSegmentSize = XSize * YSize;
261
262    // Loop on the frame[s]
263    for( RLEFramesInfo::RLEFrameList::iterator
264         it  = RLEInfo->Frames.begin();
265         it != RLEInfo->Frames.end();
266       ++it )
267    {
268       // Loop on the fragments
269       for( unsigned int k = 1; k <= (*it)->NumberFragments; k++ )
270       {
271          fp->seekg(  (*it)->Offset[k] , std::ios_base::beg );
272          (void)ReadAndDecompressRLEFragment( subDecompressed,
273                                              (*it)->Length[k],
274                                              decompressedSegmentSize, 
275                                              fp );
276          subDecompressed += decompressedSegmentSize;
277       }
278    }
279
280    if ( BitsAllocated == 16 )
281    {
282       // Try to deal with RLE 16 Bits
283       (void)DecompressRLE16BitsFromRLE8Bits( ZSize );
284    }
285
286    return true;
287 }
288
289 /**
290  * \brief Swap the bytes, according to \ref SwapCode.
291  */
292 void PixelConvert::ConvertSwapZone()
293 {
294    unsigned int i;
295
296    if( BitsAllocated == 16 )
297    {
298       uint16_t* im16 = (uint16_t*)Decompressed;
299       switch( SwapCode )
300       {
301          case 0:
302          case 12:
303          case 1234:
304             break;
305          case 21:
306          case 3412:
307          case 2143:
308          case 4321:
309             for( i = 0; i < DecompressedSize / 2; i++ )
310             {
311                im16[i]= (im16[i] >> 8) | (im16[i] << 8 );
312             }
313             break;
314          default:
315             dbg.Verbose( 0, "PixelConvert::ConvertSwapZone: SwapCode value "
316                             "(16 bits) not allowed." );
317       }
318    }
319    else if( BitsAllocated == 32 )
320    {
321       uint32_t s32;
322       uint16_t high;
323       uint16_t low;
324       uint32_t* im32 = (uint32_t*)Decompressed;
325       switch ( SwapCode )
326       {
327          case 0:
328          case 1234:
329             break;
330          case 4321:
331             for( i = 0; i < DecompressedSize / 4; i++ )
332             {
333                low     = im32[i] & 0x0000ffff;  // 4321
334                high    = im32[i] >> 16;
335                high    = ( high >> 8 ) | ( high << 8 );
336                low     = ( low  >> 8 ) | ( low  << 8 );
337                s32     = low;
338                im32[i] = ( s32 << 16 ) | high;
339             }
340             break;
341          case 2143:
342             for( i = 0; i < DecompressedSize / 4; i++ )
343             {
344                low     = im32[i] & 0x0000ffff;   // 2143
345                high    = im32[i] >> 16;
346                high    = ( high >> 8 ) | ( high << 8 );
347                low     = ( low  >> 8 ) | ( low  << 8 );
348                s32     = high;
349                im32[i] = ( s32 << 16 ) | low;
350             }
351             break;
352          case 3412:
353             for( i = 0; i < DecompressedSize / 4; i++ )
354             {
355                low     = im32[i] & 0x0000ffff; // 3412
356                high    = im32[i] >> 16;
357                s32     = low;
358                im32[i] = ( s32 << 16 ) | high;
359             }
360             break;
361          default:
362             dbg.Verbose( 0, "PixelConvert::ConvertSwapZone: SwapCode value "
363                             "(32 bits) not allowed." );
364       }
365    }
366 }
367
368 /**
369  * \brief Deal with endianity i.e. re-arange bytes inside the integer
370  */
371 void PixelConvert::ConvertReorderEndianity()
372 {
373    if ( BitsAllocated != 8 )
374    {
375       ConvertSwapZone();
376    }
377
378    // Special kludge in order to deal with xmedcon broken images:
379    if (  ( BitsAllocated == 16 )
380        && ( BitsStored < BitsAllocated )
381        && ( ! PixelSign ) )
382    {
383       int l = (int)( DecompressedSize / ( BitsAllocated / 8 ) );
384       uint16_t *deb = (uint16_t *)Decompressed;
385       for(int i = 0; i<l; i++)
386       {
387          if( *deb == 0xffff )
388          {
389            *deb = 0;
390          }
391          deb++;
392       }
393    }
394 }
395
396 /**
397  * \brief     Reads from disk the Pixel Data of JPEG Dicom encapsulated
398  &            file and decompress it.
399  * @param     fp File Pointer
400  * @return    Boolean
401  */
402 bool PixelConvert::ReadAndDecompressJPEGFile( std::ifstream* fp )
403 {
404    uint8_t* localDecompressed = Decompressed;
405    // Loop on the fragment[s]
406    for( JPEGFragmentsInfo::JPEGFragmentsList::iterator
407         it  = JPEGInfo->Fragments.begin();
408         it != JPEGInfo->Fragments.end();
409       ++it )
410    {
411       fp->seekg( (*it)->Offset, std::ios_base::beg);
412
413       if ( IsJPEG2000 )
414       {
415          if ( ! gdcm_read_JPEG2000_file( fp,localDecompressed ) )
416          {
417             return false;
418          }
419       }
420       else if ( BitsStored == 8)
421       {
422          // JPEG Lossy : call to IJG 6b
423          if ( ! gdcm_read_JPEG_file8( fp, localDecompressed ) )
424          {
425             return false;
426          }
427       }
428       else if ( BitsStored <= 12)
429       {
430          // Reading Fragment pixels
431          if ( ! gdcm_read_JPEG_file12 ( fp, localDecompressed ) )
432          {
433             return false;
434          }
435       }
436       else if ( BitsStored <= 16)
437       {
438          // Reading Fragment pixels
439          if ( ! gdcm_read_JPEG_file16 ( fp, localDecompressed ) )
440          {
441             return false;
442          }
443          //assert( IsJPEGLossless );
444       }
445       else
446       {
447          // other JPEG lossy not supported
448          dbg.Error("PixelConvert::ReadAndDecompressJPEGFile: unknown "
449                    "jpeg lossy compression ");
450          return false;
451       }
452
453       // Advance to next free location in Decompressed 
454       // for next fragment decompression (if any)
455       int length = XSize * YSize * SamplesPerPixel;
456       int numberBytes = BitsAllocated / 8;
457
458       localDecompressed += length * numberBytes;
459    }
460    return true;
461 }
462
463 /**
464  * \brief  Re-arrange the bits within the bytes.
465  * @return Boolean
466  */
467 bool PixelConvert::ConvertReArrangeBits() throw ( FormatError )
468 {
469    if ( BitsStored != BitsAllocated )
470    {
471       int l = (int)( DecompressedSize / ( BitsAllocated / 8 ) );
472       if ( BitsAllocated == 16 )
473       {
474          uint16_t mask = 0xffff;
475          mask = mask >> ( BitsAllocated - BitsStored );
476          uint16_t* deb = (uint16_t*)Decompressed;
477          for(int i = 0; i<l; i++)
478          {
479             *deb = (*deb >> (BitsStored - HighBitPosition - 1)) & mask;
480             deb++;
481          }
482       }
483       else if ( BitsAllocated == 32 )
484       {
485          uint32_t mask = 0xffffffff;
486          mask = mask >> ( BitsAllocated - BitsStored );
487          uint32_t* deb = (uint32_t*)Decompressed;
488          for(int i = 0; i<l; i++)
489          {
490             *deb = (*deb >> (BitsStored - HighBitPosition - 1)) & mask;
491             deb++;
492          }
493       }
494       else
495       {
496          dbg.Verbose(0, "PixelConvert::ConvertReArrangeBits: weird image");
497          throw FormatError( "PixelConvert::ConvertReArrangeBits()",
498                                 "weird image !?" );
499       }
500    }
501    return true;
502 }
503
504 /**
505  * \brief   Convert (Y plane, cB plane, cR plane) to RGB pixels
506  * \warning Works on all the frames at a time
507  */
508 void PixelConvert::ConvertYcBcRPlanesToRGBPixels()
509 {
510    uint8_t* localDecompressed = Decompressed;
511    uint8_t* copyDecompressed = new uint8_t[ DecompressedSize ];
512    memmove( copyDecompressed, localDecompressed, DecompressedSize );
513
514    // to see the tricks about YBR_FULL, YBR_FULL_422,
515    // YBR_PARTIAL_422, YBR_ICT, YBR_RCT have a look at :
516    // ftp://medical.nema.org/medical/dicom/final/sup61_ft.pdf
517    // and be *very* affraid
518    //
519    int l        = XSize * YSize;
520    int nbFrames = ZSize;
521
522    uint8_t* a = copyDecompressed;
523    uint8_t* b = copyDecompressed + l;
524    uint8_t* c = copyDecompressed + l + l;
525    double R, G, B;
526
527    /// \todo : Replace by the 'well known' integer computation
528    ///         counterpart. Refer to
529    ///            http://lestourtereaux.free.fr/papers/data/yuvrgb.pdf
530    ///         for code optimisation.
531
532    for ( int i = 0; i < nbFrames; i++ )
533    {
534       for ( int j = 0; j < l; j++ )
535       {
536          R = 1.164 *(*a-16) + 1.596 *(*c -128) + 0.5;
537          G = 1.164 *(*a-16) - 0.813 *(*c -128) - 0.392 *(*b -128) + 0.5;
538          B = 1.164 *(*a-16) + 2.017 *(*b -128) + 0.5;
539
540          if (R < 0.0)   R = 0.0;
541          if (G < 0.0)   G = 0.0;
542          if (B < 0.0)   B = 0.0;
543          if (R > 255.0) R = 255.0;
544          if (G > 255.0) G = 255.0;
545          if (B > 255.0) B = 255.0;
546
547          *(localDecompressed++) = (uint8_t)R;
548          *(localDecompressed++) = (uint8_t)G;
549          *(localDecompressed++) = (uint8_t)B;
550          a++;
551          b++;
552          c++;
553       }
554    }
555    delete[] copyDecompressed;
556 }
557
558 /**
559  * \brief   Convert (Red plane, Green plane, Blue plane) to RGB pixels
560  * \warning Works on all the frames at a time
561  */
562 void PixelConvert::ConvertRGBPlanesToRGBPixels()
563 {
564    uint8_t* localDecompressed = Decompressed;
565    uint8_t* copyDecompressed = new uint8_t[ DecompressedSize ];
566    memmove( copyDecompressed, localDecompressed, DecompressedSize );
567
568    int l = XSize * YSize * ZSize;
569
570    uint8_t* a = copyDecompressed;
571    uint8_t* b = copyDecompressed + l;
572    uint8_t* c = copyDecompressed + l + l;
573
574    for (int j = 0; j < l; j++)
575    {
576       *(localDecompressed++) = *(a++);
577       *(localDecompressed++) = *(b++);
578       *(localDecompressed++) = *(c++);
579    }
580    delete[] copyDecompressed;
581 }
582
583 bool PixelConvert::ReadAndDecompressPixelData( std::ifstream* fp )
584 {
585    ComputeDecompressedAndRGBSizes();
586    AllocateDecompressed();
587    //////////////////////////////////////////////////
588    //// First stage: get our hands on the Pixel Data.
589    if ( !fp )
590    {
591      dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
592                      "unavailable file pointer." );
593       return false;
594    }
595
596    fp->seekg( PixelOffset, std::ios_base::beg );
597    if( fp->fail() || fp->eof()) //Fp->gcount() == 1
598    {
599      dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
600                      "unable to find PixelOffset in file." );
601       return false;
602    }
603
604    //////////////////////////////////////////////////
605    //// Second stage: read from disk dans decompress.
606    if ( BitsAllocated == 12 )
607    {
608       ReadAndDecompress12BitsTo16Bits( fp);
609    }
610    else if ( IsDecompressed )
611    {
612       fp->read( (char*)Decompressed, PixelDataLength);
613       if ( fp->fail() || fp->eof())//Fp->gcount() == 1
614       {
615          dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
616                          "reading of decompressed pixel data failed." );
617          return false;
618       }
619    } 
620    else if ( IsRLELossless )
621    {
622       if ( ! ReadAndDecompressRLEFile( fp ) )
623       {
624          dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
625                          "RLE decompressor failed." );
626          return false;
627       }
628    }
629    else
630    {
631       // Default case concerns JPEG family
632       if ( ! ReadAndDecompressJPEGFile( fp ) )
633       {
634          dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
635                          "JPEG decompressor failed." );
636          return false;
637       }
638    }
639
640    ////////////////////////////////////////////
641    //// Third stage: twigle the bytes and bits.
642    ConvertReorderEndianity();
643    ConvertReArrangeBits();
644    ConvertHandleColor();
645
646    return true;
647 }
648
649 void PixelConvert::ConvertHandleColor()
650 {
651    //////////////////////////////////
652    // Deal with the color decoding i.e. handle:
653    //   - R, G, B planes (as opposed to RGB pixels)
654    //   - YBR (various) encodings.
655    //   - LUT[s] (or "PALETTE COLOR").
656    //
657    // The classification in the color decoding schema is based on the blending
658    // of two Dicom tags values:
659    // * "Photometric Interpretation" for which we have the cases:
660    //  - [Photo A] MONOCHROME[1|2] pictures,
661    //  - [Photo B] RGB or YBR_FULL_422 (which acts as RGB),
662    //  - [Photo C] YBR_* (with the above exception of YBR_FULL_422)
663    //  - [Photo D] "PALETTE COLOR" which indicates the presence of LUT[s].
664    // * "Planar Configuration" for which we have the cases:
665    //  - [Planar 0] 0 then Pixels are already RGB
666    //  - [Planar 1] 1 then we have 3 planes : R, G, B,
667    //  - [Planar 2] 2 then we have 1 gray Plane and 3 LUTs
668    //
669    // Now in theory, one could expect some coherence when blending the above
670    // cases. For example we should not encounter files belonging at the
671    // time to case [Planar 0] and case [Photo D].
672    // Alas, this was only theory ! Because in practice some odd (read ill
673    // formated Dicom) files (e.g. gdcmData/US-PAL-8-10x-echo.dcm) we encounter:
674    //     - "Planar Configuration" = 0,
675    //     - "Photometric Interpretation" = "PALETTE COLOR".
676    // Hence gdcm shall use the folowing "heuristic" in order to be tolerant
677    // towards Dicom-non-conformance files:
678    //   << whatever the "Planar Configuration" value might be, a
679    //      "Photometric Interpretation" set to "PALETTE COLOR" forces
680    //      a LUT intervention >>
681    //
682    // Now we are left with the following handling of the cases:
683    // - [Planar 0] OR  [Photo A] no color decoding (since respectively
684    //       Pixels are already RGB and monochrome pictures have no color :),
685    // - [Planar 1] AND [Photo B] handled with ConvertRGBPlanesToRGBPixels()
686    // - [Planar 1] AND [Photo C] handled with ConvertYcBcRPlanesToRGBPixels()
687    // - [Planar 2] OR  [Photo D] requires LUT intervention.
688
689    if ( ! IsDecompressedRGB() )
690    {
691       // [Planar 2] OR  [Photo D]: LUT intervention done outside
692       return;
693    }
694                                                                                 
695    if ( PlanarConfiguration == 1 )
696    {
697       if ( IsYBRFull )
698       {
699          // [Planar 1] AND [Photo C] (remember YBR_FULL_422 acts as RGB)
700          ConvertYcBcRPlanesToRGBPixels();
701       }
702       else
703       {
704          // [Planar 1] AND [Photo C]
705          ConvertRGBPlanesToRGBPixels();
706       }
707       return;
708    }
709                                                                                 
710    // When planarConf is 0, and RLELossless (forbidden by Dicom norm)
711    // pixels need to be RGB-fied anyway
712    if (IsRLELossless)
713    {
714      ConvertRGBPlanesToRGBPixels();
715    }
716    // In *normal *case, when planarConf is 0, pixels are already in RGB
717 }
718
719 /**
720  * \brief Predicate to know wether the image[s] (once decompressed) is RGB.
721  * \note See comments of \ref ConvertHandleColor
722  */
723 bool PixelConvert::IsDecompressedRGB()
724 {
725    if (   IsMonochrome
726        || PlanarConfiguration == 2
727        || IsPaletteColor )
728    {
729       return false;
730    }
731    return true;
732 }
733
734 void PixelConvert::ComputeDecompressedAndRGBSizes()
735 {
736    int bitsAllocated = BitsAllocated;
737    // Number of "Bits Allocated" is fixed to 16 when it's 12, since
738    // in this case we will expand the image to 16 bits (see
739    //    \ref ReadAndDecompress12BitsTo16Bits() )
740    if (  BitsAllocated == 12 )
741    {
742       bitsAllocated = 16;
743    }
744                                                                                 
745    DecompressedSize =  XSize * YSize * ZSize
746                      * ( bitsAllocated / 8 )
747                      * SamplesPerPixel;
748    if ( HasLUT )
749    {
750       RGBSize = 3 * DecompressedSize;
751    }
752
753 }
754
755 void PixelConvert::GrabInformationsFromHeader( Header* header )
756 {
757    // Just in case some access to a Header element requires disk access.
758    // Note: gdcmDocument::Fp is leaved open after OpenFile.
759    std::ifstream* fp = header->OpenFile();
760    // Number of Bits Allocated for storing a Pixel is defaulted to 16
761    // when absent from the header.
762    BitsAllocated = header->GetBitsAllocated();
763    if ( BitsAllocated == 0 )
764    {
765       BitsAllocated = 16;
766    }
767
768    // Number of "Bits Stored" defaulted to number of "Bits Allocated"
769    // when absent from the header.
770    BitsStored = header->GetBitsStored();
771    if ( BitsStored == 0 )
772    {
773       BitsStored = BitsAllocated;
774    }
775
776    // High Bit Position
777    HighBitPosition = header->GetHighBitPosition();
778    if ( HighBitPosition == 0 )
779    {
780       HighBitPosition = BitsAllocated - 1;
781    }
782
783    XSize = header->GetXSize();
784    YSize = header->GetYSize();
785    ZSize = header->GetZSize();
786    SamplesPerPixel = header->GetSamplesPerPixel();
787    PixelSize = header->GetPixelSize();
788    PixelSign = header->IsSignedPixelData();
789    SwapCode  = header->GetSwapCode();
790    TransferSyntaxType ts = header->GetTransferSyntax();
791    IsDecompressed =
792         ( ! header->IsDicomV3() )
793      || ts == ImplicitVRLittleEndian
794      || ts == ExplicitVRLittleEndian
795      || ts == ExplicitVRBigEndian
796      || ts == DeflatedExplicitVRLittleEndian;
797    IsJPEG2000     = header->IsJPEG2000();
798    IsJPEGLossless = header->IsJPEGLossless();
799    IsRLELossless  =  ( ts == RLELossless );
800    PixelOffset     = header->GetPixelOffset();
801    PixelDataLength = header->GetPixelAreaLength();
802    RLEInfo  = header->GetRLEInfo();
803    JPEGInfo = header->GetJPEGInfo();
804                                                                              
805    PlanarConfiguration = header->GetPlanarConfiguration();
806    IsMonochrome = header->IsMonochrome();
807    IsPaletteColor = header->IsPaletteColor();
808    IsYBRFull = header->IsYBRFull();
809
810    /////////////////////////////////////////////////////////////////
811    // LUT section:
812    HasLUT = header->HasLUT();
813    if ( HasLUT )
814    {
815       LutRedDescriptor   = header->GetEntryByNumber( 0x0028, 0x1101 );
816       LutGreenDescriptor = header->GetEntryByNumber( 0x0028, 0x1102 );
817       LutBlueDescriptor  = header->GetEntryByNumber( 0x0028, 0x1103 );
818    
819       // Depending on the value of Document::MAX_SIZE_LOAD_ELEMENT_VALUE
820       // [ refer to invocation of Document::SetMaxSizeLoadEntry() in
821       // Document::Document() ], the loading of the value (content) of a
822       // [Bin|Val]Entry occurence migth have been hindered (read simply NOT
823       // loaded). Hence, we first try to obtain the LUTs data from the header
824       // and when this fails we read the LUTs data directely from disk.
825       /// \todo Reading a [Bin|Val]Entry directly from disk is a kludge.
826       ///       We should NOT bypass the [Bin|Val]Entry class. Instead
827       ///       an access to an UNLOADED content of a [Bin|Val]Entry occurence
828       ///       (e.g. BinEntry::GetBinArea()) should force disk access from
829       ///       within the [Bin|Val]Entry class itself. The only problem
830       ///       is that the [Bin|Val]Entry is unaware of the FILE* is was
831       ///       parsed from. Fix that. FIXME.
832    
833       ////// Red round:
834       LutRedData = (uint8_t*)header->GetEntryBinAreaByNumber( 0x0028, 0x1201 );
835       if ( ! LutRedData )
836       {
837          // Read the Lut Data from disk
838          DocEntry* lutRedDataEntry = header->GetDocEntryByNumber( 0x0028,
839                                                                   0x1201 );
840          LutRedData = new uint8_t[ lutRedDataEntry->GetLength() ];
841          fp->seekg(  lutRedDataEntry->GetOffset() ,std::ios_base::beg );
842          fp->read( (char*)LutRedData, (size_t)lutRedDataEntry->GetLength());
843          if ( fp->fail() || fp->eof())//Fp->gcount() == 1
844          {
845             dbg.Verbose(0, "PixelConvert::GrabInformationsFromHeader: "
846                             "unable to read red LUT data" );
847             return;
848          }
849       }
850    
851       ////// Green round:
852       LutGreenData = (uint8_t*)header->GetEntryBinAreaByNumber(0x0028, 0x1202 );
853       if ( ! LutGreenData)
854       {
855          // Read the Lut Data from disk
856          DocEntry* lutGreenDataEntry = header->GetDocEntryByNumber( 0x0028,
857                                                                     0x1202 );
858          LutGreenData = new uint8_t[ lutGreenDataEntry->GetLength() ];
859          fp->seekg( lutGreenDataEntry->GetOffset() , std::ios_base::beg );
860          fp->read( (char*)LutGreenData, (size_t)lutGreenDataEntry->GetLength() );
861          if ( fp->fail() || fp->eof())//Fp->gcount() == 1
862          {
863             dbg.Verbose(0, "PixelConvert::GrabInformationsFromHeader: "
864                            "unable to read green LUT data" );
865             return;
866          }
867       }
868                                                                                    
869       ////// Blue round:
870       LutBlueData = (uint8_t*)header->GetEntryBinAreaByNumber( 0x0028, 0x1203 );
871       if ( ! LutBlueData )
872       {
873          // Read the Lut Data from disk
874          DocEntry* lutBlueDataEntry  = header->GetDocEntryByNumber( 0x0028,
875                                                                     0x1203 );
876          LutBlueData = new uint8_t[ lutBlueDataEntry->GetLength() ];
877          fp->seekg(  lutBlueDataEntry->GetOffset() , std::ios_base::beg );
878          fp->read( (char*)LutBlueData, (size_t)lutBlueDataEntry->GetLength() );
879          if ( fp->fail() || fp->eof())//Fp->gcount() == 1
880          {
881             dbg.Verbose(0, "PixelConvert::GrabInformationsFromHeader: "
882                            "unable to read blue LUT data" );
883             return;
884          }
885       }
886    }
887                                                                                 
888    header->CloseFile();
889 }
890
891 /**
892  * \brief Build Red/Green/Blue/Alpha LUT from Header
893  *         when (0028,0004),Photometric Interpretation = [PALETTE COLOR ]
894  *          and (0028,1101),(0028,1102),(0028,1102)
895  *            - xxx Palette Color Lookup Table Descriptor - are found
896  *          and (0028,1201),(0028,1202),(0028,1202)
897  *            - xxx Palette Color Lookup Table Data - are found
898  * \warning does NOT deal with :
899  *   0028 1100 Gray Lookup Table Descriptor (Retired)
900  *   0028 1221 Segmented Red Palette Color Lookup Table Data
901  *   0028 1222 Segmented Green Palette Color Lookup Table Data
902  *   0028 1223 Segmented Blue Palette Color Lookup Table Data
903  *   no known Dicom reader deals with them :-(
904  * @return a RGBA Lookup Table
905  */
906 void PixelConvert::BuildLUTRGBA()
907 {
908    if ( LutRGBA )
909    {
910       return;
911    }
912    // Not so easy : see
913    // http://www.barre.nom.fr/medical/dicom2/limitations.html#Color%20Lookup%20Tables
914                                                                                 
915    if ( ! IsPaletteColor )
916    {
917       return;
918    }
919                                                                                 
920    if (   LutRedDescriptor   == GDCM_UNFOUND
921        || LutGreenDescriptor == GDCM_UNFOUND
922        || LutBlueDescriptor  == GDCM_UNFOUND )
923    {
924       return;
925    }
926
927    ////////////////////////////////////////////
928    // Extract the info from the LUT descriptors
929    int lengthR;   // Red LUT length in Bytes
930    int debR;      // Subscript of the first Lut Value
931    int nbitsR;    // Lut item size (in Bits)
932    int nbRead = sscanf( LutRedDescriptor.c_str(),
933                         "%d\\%d\\%d",
934                         &lengthR, &debR, &nbitsR );
935    if( nbRead != 3 )
936    {
937       dbg.Verbose(0, "PixelConvert::BuildLUTRGBA: wrong red LUT descriptor");
938    }
939                                                                                 
940    int lengthG;  // Green LUT length in Bytes
941    int debG;     // Subscript of the first Lut Value
942    int nbitsG;   // Lut item size (in Bits)
943    nbRead = sscanf( LutGreenDescriptor.c_str(),
944                     "%d\\%d\\%d",
945                     &lengthG, &debG, &nbitsG );
946    if( nbRead != 3 )
947    {
948       dbg.Verbose(0, "PixelConvert::BuildLUTRGBA: wrong green LUT descriptor");
949    }
950                                                                                 
951    int lengthB;  // Blue LUT length in Bytes
952    int debB;     // Subscript of the first Lut Value
953    int nbitsB;   // Lut item size (in Bits)
954    nbRead = sscanf( LutRedDescriptor.c_str(),
955                     "%d\\%d\\%d",
956                     &lengthB, &debB, &nbitsB );
957    if( nbRead != 3 )
958    {
959       dbg.Verbose(0, "PixelConvert::BuildLUTRGBA: wrong blue LUT descriptor");
960    }
961                                                                                 
962    ////////////////////////////////////////////////////////
963    if ( ( ! LutRedData ) || ( ! LutGreenData ) || ( ! LutBlueData ) )
964    {
965       return;
966    }
967
968    ////////////////////////////////////////////////
969    // forge the 4 * 8 Bits Red/Green/Blue/Alpha LUT
970    LutRGBA = new uint8_t[ 1024 ]; // 256 * 4 (R, G, B, Alpha)
971    if ( !LutRGBA )
972    {
973       return;
974    }
975    memset( LutRGBA, 0, 1024 );
976                                                                                 
977    int mult;
978    if ( ( nbitsR == 16 ) && ( BitsAllocated == 8 ) )
979    {
980       // when LUT item size is different than pixel size
981       mult = 2; // high byte must be = low byte
982    }
983    else
984    {
985       // See PS 3.3-2003 C.11.1.1.2 p 619
986       mult = 1;
987    }
988                                                                                 
989    // if we get a black image, let's just remove the '+1'
990    // from 'i*mult+1' and check again
991    // if it works, we shall have to check the 3 Palettes
992    // to see which byte is ==0 (first one, or second one)
993    // and fix the code
994    // We give up the checking to avoid some (useless ?)overhead
995    // (optimistic asumption)
996    int i;
997    uint8_t* a = LutRGBA + 0;
998    for( i=0; i < lengthR; ++i )
999    {
1000       *a = LutRedData[i*mult+1];
1001       a += 4;
1002    }
1003                                                                                 
1004    a = LutRGBA + 1;
1005    for( i=0; i < lengthG; ++i)
1006    {
1007       *a = LutGreenData[i*mult+1];
1008       a += 4;
1009    }
1010                                                                                 
1011    a = LutRGBA + 2;
1012    for(i=0; i < lengthB; ++i)
1013    {
1014       *a = LutBlueData[i*mult+1];
1015       a += 4;
1016    }
1017                                                                                 
1018    a = LutRGBA + 3;
1019    for(i=0; i < 256; ++i)
1020    {
1021       *a = 1; // Alpha component
1022       a += 4;
1023    }
1024 }
1025
1026 /**
1027  * \brief Build the RGB image from the Decompressed imagage and the LUTs.
1028  */
1029 bool PixelConvert::BuildRGBImage()
1030 {
1031    if ( RGB )
1032    {
1033       // The job is already done.
1034       return true;
1035    }
1036
1037    if ( ! Decompressed )
1038    {
1039       // The job can't be done
1040       return false;
1041    }
1042
1043    BuildLUTRGBA();
1044    if ( ! LutRGBA )
1045    {
1046       // The job can't be done
1047       return false;
1048    }
1049                                                                                 
1050    // Build RGB Pixels
1051    AllocateRGB();
1052    uint8_t* localRGB = RGB;
1053    for (size_t i = 0; i < DecompressedSize; ++i )
1054    {
1055       int j  = Decompressed[i] * 4;
1056       *localRGB++ = LutRGBA[j];
1057       *localRGB++ = LutRGBA[j+1];
1058       *localRGB++ = LutRGBA[j+2];
1059    }
1060    return true;
1061 }
1062
1063 /**
1064  * \brief        Print self.
1065  * @param indent Indentation string to be prepended during printing.
1066  * @param os     Stream to print to.
1067  */
1068 void PixelConvert::Print( std::string indent, std::ostream &os )
1069 {
1070    os << indent
1071       << "--- Pixel information -------------------------"
1072       << std::endl;
1073    os << indent
1074       << "Pixel Data: offset " << PixelOffset
1075       << " x" << std::hex << PixelOffset << std::dec
1076       << "   length " << PixelDataLength
1077       << " x" << std::hex << PixelDataLength << std::dec
1078       << std::endl;
1079
1080    if ( IsRLELossless )
1081    {
1082       if ( RLEInfo )
1083       {
1084          RLEInfo->Print( indent, os );
1085       }
1086       else
1087       {
1088          dbg.Verbose(0, "PixelConvert::Print: set as RLE file "
1089                         "but NO RLEinfo present.");
1090       }
1091    }
1092
1093    if ( IsJPEG2000 || IsJPEGLossless )
1094    {
1095       if ( JPEGInfo )
1096       {
1097          JPEGInfo->Print( indent, os );
1098       }
1099       else
1100       {
1101          dbg.Verbose(0, "PixelConvert::Print: set as JPEG file "
1102                         "but NO JPEGinfo present.");
1103       }
1104    }
1105 }
1106
1107 } // end namespace gdcm
1108
1109 // NOTES on File internal calls
1110 // User
1111 // ---> GetImageData
1112 //     ---> GetImageDataIntoVector
1113 //        |---> GetImageDataIntoVectorRaw
1114 //        | lut intervention
1115 // User
1116 // ---> GetImageDataRaw
1117 //     ---> GetImageDataIntoVectorRaw