]> Creatis software - gdcm.git/blobdiff - src/gdcmPixelConvert.cxx
ENH: * Finished lossless transition, not only do we now read all lossless jpeg
[gdcm.git] / src / gdcmPixelConvert.cxx
index dca4533c363960d9f19dcd92fd84fd0741dd31c8..330e0f823cef9139cc89b6548af32b7b5be92d94 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmPixelConvert.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/10/13 04:05:04 $
-  Version:   $Revision: 1.10 $
+  Date:      $Date: 2004/10/14 22:35:02 $
+  Version:   $Revision: 1.13 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #include "gdcmDebug.h"
 #include "gdcmPixelConvert.h"
 
-// External JPEG decompression
-
-// for JPEGLosslessDecodeImage
-#include "jpeg/ljpg/jpegless.h"
-
 namespace gdcm
 {
                                                                                 
@@ -39,11 +34,15 @@ namespace gdcm
 bool gdcm_read_JPEG2000_file (FILE* fp, void* image_buffer);
 
 // For JPEG 8 Bits, body in file gdcmJpeg8.cxx
-bool gdcm_read_JPEG_file     (FILE* fp, void* image_buffer);
+bool gdcm_read_JPEG_file8    (FILE* fp, void* image_buffer);
 
 // For JPEG 12 Bits, body in file gdcmJpeg12.cxx
 bool gdcm_read_JPEG_file12   (FILE* fp, void* image_buffer);
 
+// For JPEG 16 Bits, body in file gdcmJpeg16.cxx
+// Beware this is misleading there is no 16bits DCT algorithm, only
+// jpeg lossless compression exist in 16bits.
+bool gdcm_read_JPEG_file16   (FILE* fp, void* image_buffer);
 
 
 //-----------------------------------------------------------------------------
@@ -91,7 +90,7 @@ void PixelConvert::AllocateDecompressed()
  * \brief Read from file a 12 bits per pixel image and uncompress it
  *        into a 16 bits per pixel image.
  */
-void PixelConvert::Decompress12BitsTo16Bits(
+void PixelConvert::ReadAndDecompress12BitsTo16Bits(
                   uint8_t* pixelZone,
                   FILE* filePtr)
                throw ( FormatError )
@@ -107,21 +106,21 @@ void PixelConvert::Decompress12BitsTo16Bits(
       ItemRead = fread( &b0, 1, 1, filePtr);
       if ( ItemRead != 1 )
       {
-         throw FormatError( "File::Decompress12BitsTo16Bits()",
+         throw FormatError( "File::ReadAndDecompress12BitsTo16Bits()",
                                 "Unfound first block" );
       }
                                                                                 
       ItemRead = fread( &b1, 1, 1, filePtr);
       if ( ItemRead != 1 )
       {
-         throw FormatError( "File::Decompress12BitsTo16Bits()",
+         throw FormatError( "File::ReadAndDecompress12BitsTo16Bits()",
                                 "Unfound second block" );
       }
                                                                                 
       ItemRead = fread( &b2, 1, 1, filePtr);
       if ( ItemRead != 1 )
       {
-         throw FormatError( "File::Decompress12BitsTo16Bits()",
+         throw FormatError( "File::ReadAndDecompress12BitsTo16Bits()",
                                 "Unfound second block" );
       }
                                                                                 
@@ -249,8 +248,7 @@ bool PixelConvert::ReadAndDecompressRLEFile(
 {
    uint8_t* im = (uint8_t*)image_buffer;
    long uncompressedSegmentSize = XSize * YSize;
-                                                                                
-                                                                                
+
    // Loop on the frame[s]
    for( RLEFramesInfo::RLEFrameList::iterator
         it  = RLEInfo->Frames.begin();
@@ -367,7 +365,7 @@ void PixelConvert::ReorderEndianity( uint8_t* pixelZone )
    {
       SwapZone( pixelZone );
    }
-                                                                                
+
    // Special kludge in order to deal with xmedcon broken images:
    if (  ( BitsAllocated == 16 )
        && ( BitsStored < BitsAllocated )
@@ -404,7 +402,7 @@ bool PixelConvert::ReadAndDecompressJPEGFile(
       ++it )
    {
       fseek( fp, (*it)->Offset, SEEK_SET );
-                                                                                
+
       if ( IsJPEG2000 )
       {
          if ( ! gdcm_read_JPEG2000_file( fp, destination ) )
@@ -412,18 +410,10 @@ bool PixelConvert::ReadAndDecompressJPEGFile(
             return false;
          }
       }
-      else if ( IsJPEGLossless )
-      {
-         // JPEG LossLess : call to xmedcom Lossless JPEG
-         JPEGLosslessDecodeImage( fp,
-                                  (uint16_t*)destination,
-                                  PixelSize * 8 * SamplesPerPixel,
-                                  (*it)->Length );
-      }
       else if ( BitsStored == 8)
       {
          // JPEG Lossy : call to IJG 6b
-         if ( ! gdcm_read_JPEG_file ( fp, destination ) )
+         if ( ! gdcm_read_JPEG_file8( fp, destination ) )
          {
             return false;
          }
@@ -436,6 +426,15 @@ bool PixelConvert::ReadAndDecompressJPEGFile(
             return false;
          }
       }
+      else if ( BitsStored == 16)
+      {
+         // Reading Fragment pixels
+         if ( ! gdcm_read_JPEG_file16 ( fp, destination ) )
+         {
+            return false;
+         }
+         //assert( IsJPEGLossless );
+      }
       else
       {
          // other JPEG lossy not supported
@@ -448,17 +447,15 @@ bool PixelConvert::ReadAndDecompressJPEGFile(
       // for next fragment decompression (if any)
       int length = XSize * YSize * SamplesPerPixel;
       int numberBytes = BitsAllocated / 8;
-                                                                                
-      destination = (uint8_t*)destination + length * numberBytes;
-                                                                                
+
+      destination += length * numberBytes;
    }
    return true;
 }
 
 /**
  * \brief  Re-arrange the bits within the bytes.
- * @param  fp already open File Pointer
- * @param  destination Where decompressed fragments should end up
+ * @param  pixelZone zone
  * @return Boolean
  */
 bool PixelConvert::ReArrangeBits( uint8_t* pixelZone )
@@ -496,19 +493,17 @@ bool PixelConvert::ReArrangeBits( uint8_t* pixelZone )
                                 "weird image !?" );
       }
    }
-   return true; //???
+   return true;
 }
 
 /**
  * \brief   Convert (Y plane, cB plane, cR plane) to RGB pixels
  * \warning Works on all the frames at a time
  */
-void PixelConvert::ConvertYcBcRPlanesToRGBPixels(
-                           uint8_t* destination,
-                           size_t imageDataSize )
+void PixelConvert::ConvertYcBcRPlanesToRGBPixels( uint8_t* destination )
 {
-   uint8_t* oldPixelZone = new uint8_t[ imageDataSize ];
-   memmove( oldPixelZone, destination, imageDataSize );
+   uint8_t* oldPixelZone = new uint8_t[ DecompressedSize ];
+   memmove( oldPixelZone, destination, DecompressedSize );
                                                                                 
    // to see the tricks about YBR_FULL, YBR_FULL_422,
    // YBR_PARTIAL_422, YBR_ICT, YBR_RCT have a look at :
@@ -558,12 +553,10 @@ void PixelConvert::ConvertYcBcRPlanesToRGBPixels(
  * \brief   Convert (Red plane, Green plane, Blue plane) to RGB pixels
  * \warning Works on all the frames at a time
  */
-void PixelConvert::ConvertRGBPlanesToRGBPixels(
-                          uint8_t* destination,
-                          size_t imageDataSize )
+void PixelConvert::ConvertRGBPlanesToRGBPixels( uint8_t* destination )
 {
-   uint8_t* oldPixelZone = new uint8_t[ imageDataSize ];
-   memmove( oldPixelZone, destination, imageDataSize );
+   uint8_t* oldPixelZone = new uint8_t[ DecompressedSize ];
+   memmove( oldPixelZone, destination, DecompressedSize );
                                                                                 
    int l = XSize * YSize * ZSize;
                                                                                 
@@ -582,44 +575,130 @@ void PixelConvert::ConvertRGBPlanesToRGBPixels(
 
 bool PixelConvert::ReadAndDecompressPixelData( void* destination, FILE* fp )
 {
+   //////////////////////////////////////////////////
+   //// First stage: get our hands on the Pixel Data.
    if ( !fp )
    {
+     dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
+                     "unavailable file pointer." );
       return false;
    }
                                                                                 
    if ( fseek(fp, PixelOffset, SEEK_SET) == -1 )
    {
+     dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
+                     "unable to find PixelOffset in file." );
       return false;
    }
                                                                                 
+   //////////////////////////////////////////////////
+   //// Second stage: read from disk dans uncompress.
    if ( BitsAllocated == 12 )
    {
-      Decompress12BitsTo16Bits( (uint8_t*)destination, fp);
-      return true;
+      ReadAndDecompress12BitsTo16Bits( (uint8_t*)destination, fp);
    }
-                                                                                
-   //////////// Decompressed File
-   if ( IsUncompressed )
+   else if ( IsUncompressed )
    {
       size_t ItemRead = fread( destination, PixelDataLength, 1, fp);
       if ( ItemRead != 1 )
       {
+         dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
+                         "reading of uncompressed pixel data failed." );
          return false;
       }
-      else
+   } 
+   else if ( IsRLELossless )
+   {
+      if ( ! ReadAndDecompressRLEFile( destination, fp ) )
       {
-         return true;
+         dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
+                         "RLE decompressor failed." );
+         return false;
       }
    }
+   else
+   {
+      // Default case concerns JPEG family
+      if ( ! ReadAndDecompressJPEGFile( (uint8_t*)destination, fp ) )
+      {
+         dbg.Verbose( 0, "PixelConvert::ReadAndDecompressPixelData: "
+                         "JPEG decompressor failed." );
+         return false;
+      }
+   }
+
+   ////////////////////////////////////////////
+   //// Third stage: twigle the bytes and bits.
+   ReorderEndianity( (uint8_t*) destination );
+   ReArrangeBits( (uint8_t*) destination );
+
+   return true;
+}
+
+bool PixelConvert::HandleColor( uint8_t* destination )
+{
+   //////////////////////////////////
+   // Deal with the color decoding i.e. handle:
+   //   - R, G, B planes (as opposed to RGB pixels)
+   //   - YBR (various) encodings.
+   //   - LUT[s] (or "PALETTE COLOR").
+   //
+   // The classification in the color decoding schema is based on the blending
+   // of two Dicom tags values:
+   // * "Photometric Interpretation" for which we have the cases:
+   //  - [Photo A] MONOCHROME[1|2] pictures,
+   //  - [Photo B] RGB or YBR_FULL_422 (which acts as RGB),
+   //  - [Photo C] YBR_* (with the above exception of YBR_FULL_422)
+   //  - [Photo D] "PALETTE COLOR" which indicates the presence of LUT[s].
+   // * "Planar Configuration" for which we have the cases:
+   //  - [Planar 0] 0 then Pixels are already RGB
+   //  - [Planar 1] 1 then we have 3 planes : R, G, B,
+   //  - [Planar 2] 2 then we have 1 gray Plane and 3 LUTs
+   //
+   // Now in theory, one could expect some coherence when blending the above
+   // cases. For example we should not encounter files belonging at the
+   // time to case [Planar 0] and case [Photo D].
+   // Alas, this was only theory ! Because in practice some odd (read ill
+   // formated Dicom) files (e.g. gdcmData/US-PAL-8-10x-echo.dcm) we encounter:
+   //     - "Planar Configuration" = 0,
+   //     - "Photometric Interpretation" = "PALETTE COLOR".
+   // Hence gdcm shall use the folowing "heuristic" in order to be tolerant
+   // towards Dicom-non-conformance files:
+   //   << whatever the "Planar Configuration" value might be, a
+   //      "Photometric Interpretation" set to "PALETTE COLOR" forces
+   //      a LUT intervention >>
+   //
+   // Now we are left with the following handling of the cases:
+   // - [Planar 0] OR  [Photo A] no color decoding (since respectively
+   //       Pixels are already RGB and monochrome pictures have no color :),
+   // - [Planar 1] AND [Photo B] handled with ConvertRGBPlanesToRGBPixels()
+   // - [Planar 1] AND [Photo C] handled with ConvertYcBcRPlanesToRGBPixels()
+   // - [Planar 2] OR  [Photo D] requires LUT intervention.
+
+   if (   IsMonochrome
+       || ( PlanarConfiguration == 2 )
+       || IsPaletteColor )
+   {
+      // [Planar 2] OR  [Photo D]: LUT intervention done outside
+      return false;
+   }
                                                                                 
-   ///////////// Run Length Encoding
-   if ( IsRLELossless )
+   if ( PlanarConfiguration == 1 )
    {
-      return ReadAndDecompressRLEFile( destination, fp );
+      if ( IsYBRFull )
+      {
+         // [Planar 1] AND [Photo C] (remember YBR_FULL_422 acts as RGB)
+         ConvertYcBcRPlanesToRGBPixels( (uint8_t*)destination );
+      }
+      else
+      {
+         // [Planar 1] AND [Photo C]
+         ConvertRGBPlanesToRGBPixels( (uint8_t*)destination );
+      }
    }
                                                                                 
-   ///////////// SingleFrame/Multiframe JPEG Lossless/Lossy/2000
-   return ReadAndDecompressJPEGFile( (uint8_t*)destination, fp );
+   // When planarConf is 0, pixels are allready in RGB
+   return true;
 }
 
 void PixelConvert::ComputeDecompressedImageDataSize()
@@ -627,7 +706,7 @@ void PixelConvert::ComputeDecompressedImageDataSize()
    int bitsAllocated;
    // Number of "Bits Allocated" is fixed to 16 when it's 12, since
    // in this case we will expand the image to 16 bits (see
-   //    \ref Decompress12BitsTo16Bits() )
+   //    \ref ReadAndDecompress12BitsTo16Bits() )
    if (  BitsAllocated == 12 )
    {
       bitsAllocated = 16;
@@ -639,3 +718,13 @@ void PixelConvert::ComputeDecompressedImageDataSize()
 }
 
 } // end namespace gdcm
+
+// NOTES on File internal calls
+// User
+// ---> GetImageData
+//     ---> GetImageDataIntoVector
+//        |---> GetImageDataIntoVectorRaw
+//        | lut intervention
+// User
+// ---> GetImageDataRaw
+//     ---> GetImageDataIntoVectorRaw