]> Creatis software - gdcm.git/commitdiff
* CLEANUP_ROUND (9) for gdcmPixelConvert
authorfrog <frog>
Fri, 8 Oct 2004 17:02:52 +0000 (17:02 +0000)
committerfrog <frog>
Fri, 8 Oct 2004 17:02:52 +0000 (17:02 +0000)
    - src/gdcmFile.[cxx|h} gdcmPixelConvert.[cxx|h], SwapZone(),
      ConvertReorderEndianity(), ConvertDecmpres12BitsTo16Bits() moved
      away from gdcmFile:: to gdcmPixelConvert::.

ChangeLog
src/gdcmFile.cxx
src/gdcmFile.h
src/gdcmPixelConvert.cxx
src/gdcmPixelConvert.h

index c8163a295cc480e14040a8bb6c81c7b5872a763f..912b4b4376c4f2029392f0b5c62ab62d33bdfa7e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,11 @@
     - src/gdcmPixelConvert.cxx all RLE code is now in PixelConvert::
     - src/CMakeLists.txt gdcmFile.[cxx|h] changed accordingly
     - src/gdcmRLEFrame*.h gdcmPixelConvert is now a friend class.
+  * CLEANUP_ROUND (9) for gdcmPixelConvert
+    - src/gdcmFile.[cxx|h} gdcmPixelConvert.[cxx|h], SwapZone(),
+      ConvertReorderEndianity(), ConvertDecmpres12BitsTo16Bits() moved
+      away from gdcmFile:: to gdcmPixelConvert::.
+      
 
 2004-10-07 Eric Boix <Eric.Boix@creatis.insa-lyon.fr>
   * CLEANUP_ROUND (5) for gdcmPixelConvert (Upshit creek without a paddle)
index 7a3c1fcc51fce46acc2e466a028b3e4d08668bb3..323cdba54346ab1add3ab41eb4006c14a11459e3 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmFile.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/10/08 16:27:20 $
-  Version:   $Revision: 1.135 $
+  Date:      $Date: 2004/10/08 17:02:53 $
+  Version:   $Revision: 1.136 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -520,10 +520,12 @@ size_t gdcmFile::GetImageDataIntoVectorRaw (void* destination, size_t maxSize)
 
    bool signedPixel = Header->IsSignedPixelData();
 
-   ConvertReorderEndianity( (uint8_t*) destination,
+   gdcmPixelConvert::ConvertReorderEndianity(
+                            (uint8_t*) destination,
                             ImageDataSize,
                             numberBitsStored,
                             numberBitsAllocated,
+                            Header->GetSwapCode(),
                             signedPixel );
 
    ConvertReArrangeBits( (uint8_t*) destination,
@@ -656,39 +658,6 @@ void gdcmFile::ConvertReArrangeBits( uint8_t* pixelZone,
    }
 }
 
-/**
- * \brief Deal with endianity i.e. re-arange bytes inside the integer
- */
-void gdcmFile::ConvertReorderEndianity( uint8_t* pixelZone,
-                                        size_t imageDataSize,
-                                        int numberBitsStored,
-                                        int numberBitsAllocated,
-                                        bool signedPixel)
-{
-   if ( numberBitsAllocated != 8 )
-   {
-      SwapZone( pixelZone, Header->GetSwapCode(), ImageDataSize,
-                numberBitsAllocated );
-   }
-     
-   // Special kludge in order to deal with xmedcon broken images:
-   if (  ( numberBitsAllocated == 16 )
-      && ( numberBitsStored < numberBitsAllocated )
-      && ( ! signedPixel ) )
-   {
-      int l = (int)(ImageDataSize / (numberBitsAllocated/8));
-      uint16_t *deb = (uint16_t *)pixelZone;
-      for(int i = 0; i<l; i++)
-      {
-         if( *deb == 0xffff )
-         {
-           *deb = 0;
-         }
-         deb++;   
-      }
-   }
-}
-
 /**
  * \brief   Convert (Y plane, cB plane, cR plane) to RGB pixels
  * \warning Works on all the frames at a time
@@ -949,89 +918,6 @@ bool gdcmFile::WriteBase (std::string const & fileName, FileType type)
 
 //-----------------------------------------------------------------------------
 // Private
-/**
- * \brief   Swap the bytes, according to swap code.
- * \warning not end user intended
- * @param   im area to deal with
- * @param   swap swap code
- * @param   lgr Area Length
- * @param   nb Pixels Bit number 
- */
-void gdcmFile::SwapZone(void* im, int swap, int lgr, int nb)
-{
-   int i;
-
-   if( nb == 16 )
-   {
-      uint16_t* im16 = (uint16_t*)im;
-      switch( swap )
-      {
-         case 0:
-         case 12:
-         case 1234:
-            break;
-         case 21:
-         case 3412:
-         case 2143:
-         case 4321:
-            for(i=0; i < lgr/2; i++)
-            {
-               im16[i]= (im16[i] >> 8) | (im16[i] << 8 );
-            }
-            break;
-         default:
-            std::cout << "SWAP value (16 bits) not allowed :i" << swap << 
-            std::endl;
-      }
-   }
-   else if( nb == 32 )
-   {
-      uint32_t s32;
-      uint16_t fort, faible;
-      uint32_t* im32 = (uint32_t*)im;
-      switch ( swap )
-      {
-         case 0:
-         case 1234:
-            break;
-         case 4321:
-            for(i = 0; i < lgr/4; i++)
-            {
-               faible  = im32[i] & 0x0000ffff;  // 4321
-               fort    = im32[i] >> 16;
-               fort    = ( fort >> 8   ) | ( fort << 8 );
-               faible  = ( faible >> 8 ) | ( faible << 8);
-               s32     = faible;
-               im32[i] = ( s32 << 16 ) | fort;
-            }
-            break;
-         case 2143:
-            for(i = 0; i < lgr/4; i++)
-            {
-               faible  = im32[i] & 0x0000ffff;   // 2143
-               fort    = im32[i] >> 16;
-               fort    = ( fort >> 8 ) | ( fort << 8 );
-               faible  = ( faible >> 8) | ( faible << 8);
-               s32     = fort; 
-               im32[i] = ( s32 << 16 ) | faible;
-            }
-            break;
-         case 3412:
-            for(i = 0; i < lgr/4; i++)
-            {
-               faible  = im32[i] & 0x0000ffff; // 3412
-               fort    = im32[i] >> 16;
-               s32     = faible;
-               im32[i] = ( s32 << 16 ) | fort;
-            }
-            break;
-         default:
-            std::cout << "SWAP value (32 bits) not allowed : " << swap << 
-            std::endl;
-      }
-   }
-}
-
 /**
  * \brief   Read pixel data from disk (optionaly decompressing) into the
  *          caller specified memory location.
@@ -1054,7 +940,8 @@ bool gdcmFile::ReadPixelData(void* destination)
 
    if ( Header->GetBitsAllocated() == 12 )
    {
-      ConvertDecompress12BitsTo16Bits( (uint8_t*)destination, 
+      gdcmPixelConvert::ConvertDecompress12BitsTo16Bits(
+                                       (uint8_t*)destination, 
                                        Header->GetXSize(),
                                        Header->GetYSize(),
                                        fp);
@@ -1216,56 +1103,3 @@ bool gdcmFile::ReadPixelData(void* destination)
    return res;
 }
 
-/**
- * \brief Read from file a 12 bits per pixel image and uncompress it
- *        into a 16 bits per pixel image.
- */
-void gdcmFile::ConvertDecompress12BitsTo16Bits(
-                  uint8_t* pixelZone,
-                  int sizeX,
-                  int sizeY,
-                  FILE* filePtr)
-               throw ( gdcmFormatError )
-{
-   int nbPixels = sizeX * sizeY;
-   uint16_t* destination = (uint16_t*)pixelZone;    
-
-   for( int p = 0; p < nbPixels; p += 2 )
-   {
-      uint8_t b0, b1, b2;
-      size_t ItemRead;
-
-      ItemRead = fread( &b0, 1, 1, filePtr);
-      if ( ItemRead != 1 )
-      {
-         throw gdcmFormatError( "gdcmFile::ConvertDecompress12BitsTo16Bits()",
-                                "Unfound first block" );
-      }
-
-      ItemRead = fread( &b1, 1, 1, filePtr);
-      if ( ItemRead != 1 )
-      {
-         throw gdcmFormatError( "gdcmFile::ConvertDecompress12BitsTo16Bits()",
-                                "Unfound second block" );
-      }
-
-      ItemRead = fread( &b2, 1, 1, filePtr);      
-      if ( ItemRead != 1 )
-      {
-         throw gdcmFormatError( "gdcmFile::ConvertDecompress12BitsTo16Bits()",
-                                "Unfound second block" );
-      }
-
-      // Two steps are necessary to please VC++
-      //
-      // 2 pixels 12bit =     [0xABCDEF]
-      // 2 pixels 16bit = [0x0ABD] + [0x0FCE]
-      //                     A                     B                 D
-      *destination++ =  ((b0 >> 4) << 8) + ((b0 & 0x0f) << 4) + (b1 & 0x0f);
-      //                     F                     C                 E
-      *destination++ =  ((b2 & 0x0f) << 8) + ((b1 >> 4) << 4) + (b2 >> 4);
-  
-      /// \todo JPR Troubles expected on Big-Endian processors ?
-   }
-}
-//-----------------------------------------------------------------------------
index 3bb7487244726d189a9c4f1b935e15d0f88cb572..057f02bded1e096f6c68f40367092cac9d8219b0 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmFile.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/08 16:27:20 $
-  Version:   $Revision: 1.57 $
+  Date:      $Date: 2004/10/08 17:02:53 $
+  Version:   $Revision: 1.58 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -49,17 +49,6 @@ public:
            int numberBitsStored,
            int numberBitsAllocated,
            int highBitPosition ) throw ( gdcmFormatError );
-   void ConvertReorderEndianity(
-           uint8_t* pixelZone,
-           size_t imageDataSize,
-           int numberBitsStored,
-           int numberBitsAllocated,
-           bool signedPixel );
-   void ConvertDecompress12BitsTo16Bits(
-           uint8_t* pixelZone,
-           int sizeX,
-           int sizeY,
-           FILE* filePtr) throw ( gdcmFormatError);
    
    /// Accessor to \ref ImageDataSize
    size_t GetImageDataSize(){ return ImageDataSize; };
@@ -102,7 +91,6 @@ protected:
 
 private:
    void Initialise();
-   void SwapZone(void* im, int swap, int lgr, int nb);
 
    bool ReadPixelData(void* destination);
    
index 789a600a7c699a905e8d1c9e075f40551857b75a..9a8afcd3ed7afdb18f9559b42b7885a6db2a9faf 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmPixelConvert.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/10/08 16:27:20 $
-  Version:   $Revision: 1.3 $
+  Date:      $Date: 2004/10/08 17:02:53 $
+  Version:   $Revision: 1.4 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -70,46 +70,53 @@ void gdcmPixelConvert::AllocateUncompressed()
  * \brief Read from file a 12 bits per pixel image and uncompress it
  *        into a 16 bits per pixel image.
  */
-bool gdcmPixelConvert::ReadAndUncompress12Bits( FILE* filePointer,
-                                                size_t uncompressedSize,
-                                                size_t PixelNumber )
+void gdcmPixelConvert::ConvertDecompress12BitsTo16Bits(
+                  uint8_t* pixelZone,
+                  int sizeX,
+                  int sizeY,
+                  FILE* filePtr)
+               throw ( gdcmFormatError )
 {
-   SetUncompressedSize( uncompressedSize );
-   AllocateUncompressed();
-
-   uint16_t* pdestination = (uint16_t*)Uncompressed;
+   int nbPixels = sizeX * sizeY;
+   uint16_t* destination = (uint16_t*)pixelZone;
                                                                                 
-   for(int p = 0; p < PixelNumber; p += 2 )
+   for( int p = 0; p < nbPixels; p += 2 )
    {
-      // 2 pixels 12bit =     [0xABCDEF]
-      // 2 pixels 16bit = [0x0ABD] + [0x0FCE]
       uint8_t b0, b1, b2;
       size_t ItemRead;
-      ItemRead = fread( &b0, 1, 1, filePointer);
+                                                                                
+      ItemRead = fread( &b0, 1, 1, filePtr);
       if ( ItemRead != 1 )
       {
-         return false;
+         throw gdcmFormatError( "gdcmFile::ConvertDecompress12BitsTo16Bits()",
+                                "Unfound first block" );
       }
-      ItemRead = fread( &b1, 1, 1, filePointer);
+                                                                                
+      ItemRead = fread( &b1, 1, 1, filePtr);
       if ( ItemRead != 1 )
       {
-         return false;
+         throw gdcmFormatError( "gdcmFile::ConvertDecompress12BitsTo16Bits()",
+                                "Unfound second block" );
       }
-      ItemRead = fread( &b2, 1, 1, filePointer);
+                                                                                
+      ItemRead = fread( &b2, 1, 1, filePtr);
       if ( ItemRead != 1 )
       {
-         return false;
+         throw gdcmFormatError( "gdcmFile::ConvertDecompress12BitsTo16Bits()",
+                                "Unfound second block" );
       }
                                                                                 
-      //Two steps are necessary to please VC++
-      *pdestination++ =  ((b0 >> 4) << 8) + ((b0 & 0x0f) << 4) + (b1 & 0x0f);
+      // Two steps are necessary to please VC++
+      //
+      // 2 pixels 12bit =     [0xABCDEF]
+      // 2 pixels 16bit = [0x0ABD] + [0x0FCE]
       //                     A                     B                 D
-      *pdestination++ =  ((b2 & 0x0f) << 8) + ((b1 >> 4) << 4) + (b2 >> 4);
+      *destination++ =  ((b0 >> 4) << 8) + ((b0 & 0x0f) << 4) + (b1 & 0x0f);
       //                     F                     C                 E
+      *destination++ =  ((b2 & 0x0f) << 8) + ((b1 >> 4) << 4) + (b2 >> 4);
                                                                                 
       /// \todo JPR Troubles expected on Big-Endian processors ?
    }
-   return true;
 }
 
 /**
@@ -305,3 +312,121 @@ bool gdcmPixelConvert::gdcm_read_RLE_file( void* image_buffer,
    return true;
 }
 
+/**
+ * \brief   Swap the bytes, according to swap code.
+ * \warning not end user intended
+ * @param   im area to deal with
+ * @param   swap swap code
+ * @param   lgr Area Length
+ * @param   nb Pixels Bit number
+ */
+void gdcmPixelConvert::SwapZone(void* im, int swap, int lgr, int nb)
+{
+   int i;
+                                                                                
+   if( nb == 16 )
+   {
+      uint16_t* im16 = (uint16_t*)im;
+      switch( swap )
+      {
+         case 0:
+         case 12:
+         case 1234:
+            break;
+         case 21:
+         case 3412:
+         case 2143:
+         case 4321:
+            for(i=0; i < lgr/2; i++)
+            {
+               im16[i]= (im16[i] >> 8) | (im16[i] << 8 );
+            }
+            break;
+         default:
+            std::cout << "SWAP value (16 bits) not allowed :i" << swap <<
+            std::endl;
+      }
+   }
+   else if( nb == 32 )
+   {
+      uint32_t s32;
+      uint16_t fort, faible;
+      uint32_t* im32 = (uint32_t*)im;
+      switch ( swap )
+      {
+         case 0:
+         case 1234:
+            break;
+         case 4321:
+            for(i = 0; i < lgr/4; i++)
+            {
+               faible  = im32[i] & 0x0000ffff;  // 4321
+               fort    = im32[i] >> 16;
+               fort    = ( fort >> 8   ) | ( fort << 8 );
+               faible  = ( faible >> 8 ) | ( faible << 8);
+               s32     = faible;
+               im32[i] = ( s32 << 16 ) | fort;
+            }
+            break;
+         case 2143:
+            for(i = 0; i < lgr/4; i++)
+            {
+               faible  = im32[i] & 0x0000ffff;   // 2143
+               fort    = im32[i] >> 16;
+               fort    = ( fort >> 8 ) | ( fort << 8 );
+               faible  = ( faible >> 8) | ( faible << 8);
+               s32     = fort;
+               im32[i] = ( s32 << 16 ) | faible;
+            }
+            break;
+         case 3412:
+            for(i = 0; i < lgr/4; i++)
+            {
+               faible  = im32[i] & 0x0000ffff; // 3412
+               fort    = im32[i] >> 16;
+               s32     = faible;
+               im32[i] = ( s32 << 16 ) | fort;
+            }
+            break;
+         default:
+            std::cout << "SWAP value (32 bits) not allowed : " << swap <<
+            std::endl;
+      }
+   }
+}
+
+
+
+/**
+ * \brief Deal with endianity i.e. re-arange bytes inside the integer
+ */
+void gdcmPixelConvert::ConvertReorderEndianity( uint8_t* pixelZone,
+                                        size_t imageDataSize,
+                                        int numberBitsStored,
+                                        int numberBitsAllocated,
+                                        int swapCode,
+                                        bool signedPixel)
+{
+   if ( numberBitsAllocated != 8 )
+   {
+      SwapZone( pixelZone, swapCode, imageDataSize, numberBitsAllocated );
+   }
+                                                                                
+   // Special kludge in order to deal with xmedcon broken images:
+   if (  ( numberBitsAllocated == 16 )
+      && ( numberBitsStored < numberBitsAllocated )
+      && ( ! signedPixel ) )
+   {
+      int l = (int)(imageDataSize / (numberBitsAllocated/8));
+      uint16_t *deb = (uint16_t *)pixelZone;
+      for(int i = 0; i<l; i++)
+      {
+         if( *deb == 0xffff )
+         {
+           *deb = 0;
+         }
+         deb++;
+      }
+   }
+}
+
index 1dd425a0d97415cfc97984cafb476d0465bcb95c..02f11f3b3db41ae1acfddd15442be418ec2c9803 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmPixelConvert.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/08 16:27:20 $
-  Version:   $Revision: 1.3 $
+  Date:      $Date: 2004/10/08 17:02:53 $
+  Version:   $Revision: 1.4 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -22,6 +22,7 @@
 
 #include "gdcmCommon.h"
 #include "gdcmRLEFramesInfo.h"
+#include "gdcmException.h"
 
 /*
  * \brief Utility container for gathering the various forms the pixel data
@@ -60,27 +61,38 @@ bool ReadUncompressed( FILE* filePointer,
                        size_t expectedSize );
 bool ConvertGrayAndLutToRGB( uint8_t *lutRGBA );
 bool ReadAndUncompressRLE8Bits(FILE* fp, size_t uncompressedSize );
-static bool UncompressRLE16BitsFromRLE8Bits(
-                       int XSize,
-                       int YSize,
-                       int NumberOfFrames,
-                       uint8_t* fixMemUncompressed );
-static bool ReadAndUncompressRLEFragment(
-                                    uint8_t* decodedZone,
-                                    long fragmentSize,
-                                    long uncompressedSegmentSize,
-                                    FILE* fp );
-static bool gdcm_read_RLE_file   ( void* image_buffer,
-                                   int XSize,
-                                   int YSize,
-                                   int ZSize,
-                                   int BitsAllocated,
-                                   gdcmRLEFramesInfo* RLEInfo,
-                                   FILE* fp );
-
-
 
+   static bool UncompressRLE16BitsFromRLE8Bits(
+                  int XSize,
+                  int YSize,
+                  int NumberOfFrames,
+                  uint8_t* fixMemUncompressed );
+   static bool ReadAndUncompressRLEFragment(
+                  uint8_t* decodedZone,
+                  long fragmentSize,
+                  long uncompressedSegmentSize,
+                  FILE* fp );
+   static bool gdcm_read_RLE_file(
+                  void* image_buffer,
+                  int XSize,
+                  int YSize,
+                  int ZSize,
+                  int BitsAllocated,
+                  gdcmRLEFramesInfo* RLEInfo,
+                  FILE* fp );
+   static void ConvertDecompress12BitsTo16Bits(
+                  uint8_t* pixelZone,
+                  int sizeX,
+                  int sizeY,
+                  FILE* filePtr) throw ( gdcmFormatError );
+   static void SwapZone(void* im, int swap, int lgr, int nb);
+   static void ConvertReorderEndianity(
+                  uint8_t* pixelZone,
+                  size_t imageDataSize,
+                  int numberBitsStored,
+                  int numberBitsAllocated,
+                  int swapCode,
+                  bool signedPixel );
 };
 
 //-----------------------------------------------------------------------------