]> Creatis software - gdcm.git/blob - src/gdcmPixelReadConvert.h
ENH: Adding support for multiple fragments of jpeg2000... this is SO ugly...
[gdcm.git] / src / gdcmPixelReadConvert.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmPixelReadConvert.h,v $
5   Language:  C++
6   Date:      $Date: 2005/05/30 01:30:39 $
7   Version:   $Revision: 1.21 $
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
20 #ifndef GDCMPIXELREADCONVERT_H
21 #define GDCMPIXELREADCONVERT_H
22
23 #include "gdcmBase.h"
24 #include "gdcmException.h"
25 #include <fstream>
26
27 namespace gdcm
28 {
29 class File;
30 class RLEFramesInfo;
31 class JPEGFragmentsInfo;
32
33 /**
34  * \brief Utility container for gathering the various forms the pixel data
35  *        migth take during the user demanded processes.
36  */
37 class GDCM_EXPORT PixelReadConvert : public Base
38 {
39 public:
40    PixelReadConvert();
41    virtual ~PixelReadConvert();
42
43    void Print( std::ostream &os = std::cout, std::string const &indent = "" );
44
45    // Getter accessors:
46    uint8_t *GetRGB()     { return RGB;     }
47    size_t   GetRGBSize() { return RGBSize; }
48    uint8_t *GetRaw()     { return Raw;     }
49    size_t   GetRawSize() { return RawSize; }
50    uint8_t *GetLutRGBA() { return LutRGBA; }
51
52    // Predicates:
53    bool IsRawRGB();
54
55 // In progress
56    void GrabInformationsFromFile( File *file );
57    bool ReadAndDecompressPixelData( std::ifstream *fp );
58    void Squeeze();
59    bool BuildRGBImage();
60
61 private:
62    // Use the fp:
63    void ReadAndDecompress12BitsTo16Bits( std::ifstream *fp ) 
64                                  throw ( FormatError );
65    bool ReadAndDecompressJPEGFile( std::ifstream *fp );
66
67    // In place (within Decompressed and with no fp access) decompression
68    // or convertion:
69    void BuildLUTRGBA();
70    void ConvertSwapZone();
71    void ConvertReorderEndianity();
72    bool ConvertReArrangeBits() throw ( FormatError );
73    void ConvertFixGreyLevels();
74    void ConvertRGBPlanesToRGBPixels();
75    void ConvertYcBcRPlanesToRGBPixels();
76    void ConvertHandleColor();
77
78    void ComputeRawAndRGBSizes();
79    void AllocateRGB();
80    void AllocateRaw();
81
82 // Variables
83    /// Pixel data represented as RGB after LUT color interpretation.
84    uint8_t *RGB;
85    /// Size of RGB image.
86    size_t   RGBSize;
87    /// Pixel data after decompression and bit/byte rearrangement.
88    uint8_t *Raw;
89    /// Size of Decompressed image.
90    size_t   RawSize;
91    /// \brief Red/Green/Blue/Alpha LookUpTable build out of the
92    ///        Red/Green/Blue LUT descriptors (see \ref BuildLUTRGBA ).
93    uint8_t *LutRGBA;
94
95    size_t PixelOffset;
96    size_t PixelDataLength;
97    int XSize;
98    int YSize;
99    int ZSize;
100    int BitsAllocated;
101    int BitsStored;
102    int HighBitPosition;
103    int SamplesPerPixel;
104    int PixelSize;
105    bool PixelSign;
106    int SwapCode;
107
108    bool IsRaw;
109    bool IsJPEG2000;
110    bool IsJPEGLS;
111    bool IsJPEGLossless;
112    bool IsJPEGLossy;
113    bool IsJPEG;
114    bool IsRLELossless;
115    bool IsMPEG;
116
117    RLEFramesInfo *RLEInfo;
118    JPEGFragmentsInfo *JPEGInfo;
119
120    // For handling color stage
121    int PlanarConfiguration;
122    bool IsMonochrome;
123    bool IsMonochrome1;
124    bool IsPaletteColor;
125    bool IsYBRFull;
126    bool HasLUT;
127    // The 3 LUT descriptors may be different:
128    std::string LutRedDescriptor;
129    std::string LutGreenDescriptor;
130    std::string LutBlueDescriptor;
131    uint8_t *LutRedData;
132    uint8_t *LutGreenData;
133    uint8_t *LutBlueData;
134
135 };
136 } // end namespace gdcm
137
138 //-----------------------------------------------------------------------------
139 #endif