1 /*=========================================================================
4 Module: $RCSfile: gdcmPixelReadConvert.h,v $
6 Date: $Date: 2005/01/06 20:03:28 $
7 Version: $Revision: 1.9 $
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 GDCMPIXELREADCONVERT_H
21 #define GDCMPIXELREADCONVERT_H
23 #include "gdcmCommon.h"
25 #include "gdcmException.h"
31 class JPEGFragmentsInfo;
33 * \brief Utility container for gathering the various forms the pixel data
34 * migth take during the user demanded processes.
36 class GDCM_EXPORT PixelReadConvert : public Base
40 virtual ~PixelReadConvert();
42 //// Getter accessors:
43 uint8_t* GetRGB() { return RGB; }
44 size_t GetRGBSize() { return RGBSize; }
45 uint8_t* GetRaw() { return Raw; }
46 size_t GetRawSize() { return RawSize; }
47 uint8_t* GetLutRGBA() { return LutRGBA; }
52 void Print( std::ostream &os = std::cout );
53 void Print( std::string indent = "", std::ostream &os = std::cout );
56 void GrabInformationsFromHeader( Header *header );
57 bool ReadAndDecompressPixelData( std::ifstream *fp );
63 bool ReadAndDecompressRLEFragment(
64 uint8_t *subDecompressed,
66 long decompressedSegmentSize,
68 void ReadAndDecompress12BitsTo16Bits( std::ifstream *fp ) throw ( FormatError );
69 bool ReadAndDecompressRLEFile( std::ifstream *fp );
70 bool ReadAndDecompressJPEGFile( std::ifstream *fp );
71 bool ReadAndDecompressJPEGFramesFromFile( std::ifstream *fp );
72 bool ReadAndDecompressJPEGSingleFrameFragmentsFromFile( std::ifstream *fp );
73 bool ReadAndDecompressJPEGFragmentedFramesFromFile( std::ifstream *fp );
76 void BuildLUTRGBA( std::ifstream *fp );
78 // In place (within Decompressed and with no fp access) decompression
81 bool DecompressRLE16BitsFromRLE8Bits( int NumberOfFrames );
82 void ConvertSwapZone();
83 void ConvertReorderEndianity();
84 bool ConvertReArrangeBits() throw ( FormatError );
85 void ConvertRGBPlanesToRGBPixels();
86 void ConvertYcBcRPlanesToRGBPixels();
87 void ConvertHandleColor();
89 void ComputeRawAndRGBSizes();
94 /// Pixel data represented as RGB after LUT color interpretation.
96 /// Size of RGB image.
98 /// Pixel data after decompression and bit/byte rearrangement.
100 /// Size of Decompressed image.
102 /// \brief Red/Green/Blue/Alpha LookUpTable build out of the
103 /// Red/Green/Blue LUT descriptors (see \ref BuildLUTRGBA ).
107 size_t PixelDataLength;
124 RLEFramesInfo *RLEInfo;
125 JPEGFragmentsInfo *JPEGInfo;
127 // For handling color stage
128 int PlanarConfiguration;
133 // The 3 LUT descriptors may be different:
134 std::string LutRedDescriptor;
135 std::string LutGreenDescriptor;
136 std::string LutBlueDescriptor;
138 uint8_t *LutGreenData;
139 uint8_t *LutBlueData;
142 } // end namespace gdcm
144 //-----------------------------------------------------------------------------