1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
/*************************************************************************
This project implements a complete(!) JPEG (Recommendation ITU-T
T.81 | ISO/IEC 10918-1) codec, plus a library that can be used to
encode and decode JPEG streams.
It also implements ISO/IEC 18477 aka JPEG XT which is an extension
towards intermediate, high-dynamic-range lossy and lossless coding
of JPEG. In specific, it supports ISO/IEC 18477-3/-6/-7/-8 encoding.
Note that only Profiles C and D of ISO/IEC 18477-7 are supported
here. Check the JPEG XT reference software for a full implementation
of ISO/IEC 18477-7.
Copyright (C) 2012-2018 Thomas Richter, University of Stuttgart and
Accusoft. (C) 2019-2020 Thomas Richter, Fraunhofer IIS.
This program is available under two licenses, GPLv3 and the ITU
Software licence Annex A Option 2, RAND conditions.
For the full text of the GPU license option, see README.license.gpl.
For the full text of the ITU license option, see README.license.itu.
You may freely select between these two options.
For the GPL option, please note the following:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*************************************************************************/
/*
** This class defines the arbitrary color transformation defined
** in JPEG-LS part-2. It is - in a sense - a special case of the
** JPEG 2000 part-2 reversible color transformation.
**
** $Id: lscolortrafo.cpp,v 1.8 2014/09/30 08:33:17 thor Exp $
**
*/
/// Includes
#include "tools/environment.hpp"
#include "marker/lscolortrafo.hpp"
#include "io/bytestream.hpp"
///
/// LSColorTrafo::LSColorTrafo
// Clean the marker.
LSColorTrafo::LSColorTrafo(class Environ *env)
: JKeeper(env), m_ucDepth(0), m_usNear(0), m_usMaxTrans(0),
m_pucInputLabels(NULL), m_pucShift(NULL), m_pbCentered(NULL),
m_pusMatrix(NULL)
{ }
///
/// LSColorTrafo::~LSColorTrafo
// Release all the memory.
LSColorTrafo::~LSColorTrafo(void)
{
if (m_pucInputLabels)
m_pEnviron->FreeMem(m_pucInputLabels,m_ucDepth * sizeof(UBYTE));
if (m_pucShift)
m_pEnviron->FreeMem(m_pucShift ,m_ucDepth * sizeof(UBYTE));
if (m_pbCentered)
m_pEnviron->FreeMem(m_pbCentered ,m_ucDepth * sizeof(bool));
if (m_pusMatrix)
m_pEnviron->FreeMem(m_pusMatrix ,m_ucDepth * sizeof(UWORD) * (m_ucDepth - 1));
}
///
/// LSColorTrafo::WriteMarker
// Write the marker contents to a LSE marker.
void LSColorTrafo::WriteMarker(class ByteStream *io)
{
UBYTE i,j;
LONG len = 2 + 1 + 2 + 1 + 2 * m_ucDepth * m_ucDepth;
if (len > MAX_UWORD)
JPG_THROW(OVERFLOW_PARAMETER,"LSColorTrafo::WriteMarker",
"too many components, cannot create a LSE color transformation marker");
io->PutWord(len);
io->Put(0x0d); // Type of the LSE marker.
io->PutWord(m_usMaxTrans);
io->Put(m_ucDepth);
// Write the component labels.
for(i = 0;i < m_ucDepth;i++) {
io->Put(m_pucInputLabels[i]);
}
// Write the transformation matrix.
for(i = 0;i < m_ucDepth;i++) {
UBYTE v = m_pucShift[i];
if (m_pbCentered[i])
v |= 0x80;
io->Put(v);
for(j = 0;j < m_ucDepth - 1;j++) {
io->PutWord(m_pusMatrix[i * (m_ucDepth - 1) + j]);
}
}
}
///
/// LSColorTrafo::ParseMarker
// Parse the marker contents of a LSE marker.
// marker length and ID are already parsed off.
void LSColorTrafo::ParseMarker(class ByteStream *io,UWORD len)
{
UBYTE i,j;
if (len < 6)
JPG_THROW(MALFORMED_STREAM,"LSColorTrafo::ParseMarker",
"length of the LSE color transformation marker is invalid, "
"must be at least six bytes long");
m_usMaxTrans = io->GetWord();
m_ucDepth = io->Get();
len -= 6;
if (len != 2 * m_ucDepth * m_ucDepth)
JPG_THROW(MALFORMED_STREAM,"LSColorTrafo::ParseMarker",
"length of the LSE color transformation marker is invalid");
if (m_ucDepth == 0)
JPG_THROW(MALFORMED_STREAM,"LSColorTrafo::ParseMarker",
"number of components in the LSE color transformation marker must not be zero");
// Read the input labels of the components to be transformed.
assert(m_pucInputLabels == NULL);
m_pucInputLabels = (UBYTE *)m_pEnviron->AllocMem(m_ucDepth * sizeof(UBYTE));
for(i = 0;i < m_ucDepth;i++) {
m_pucInputLabels[i] = io->Get();
}
// Allocate the shift, centered and matrix arrays.
assert(m_pucShift == NULL && m_pbCentered == NULL && m_pusMatrix == NULL);
m_pucShift = (UBYTE *)m_pEnviron->AllocMem(m_ucDepth * sizeof(UBYTE));
m_pbCentered = (bool *)m_pEnviron->AllocMem(m_ucDepth * sizeof(bool));
m_pusMatrix = (UWORD *)m_pEnviron->AllocMem(m_ucDepth * sizeof(UWORD) * (m_ucDepth - 1));
for(i = 0;i < m_ucDepth;i++) {
// The flags & shift byte.
UBYTE v = io->Get();
m_pbCentered[i] = (v & 0x80)?true:false;
m_pucShift[i] = v & 0x7f;
if (m_pucShift[i] > 32)
JPG_THROW(OVERFLOW_PARAMETER,"LSColorTrafo::ParseMarker",
"LSE color transformation marker shift value is too large, must be < 32");
// And the matrix itself.
for(j = 0;j < m_ucDepth - 1;j++) {
m_pusMatrix[j + i * (m_ucDepth - 1)] = io->GetWord();
}
}
}
///
/// LSColorTrafo::InstallDefaults
// Install the defaults for a given sample count. This
// installs the example pseudo-RCT given in the specs.
void LSColorTrafo::InstallDefaults(UBYTE bpp,UBYTE near)
{
assert(m_pucInputLabels == NULL);
assert(m_pucShift == NULL && m_pbCentered == NULL && m_pusMatrix == NULL);
// The default is here the 3x3 pseudo-RCT
m_ucDepth = 3;
m_usMaxTrans = (1 << bpp) - 1;
// Error bound on the transformed components: This is the worst case
// error created for the pseudo-RCT transformation: The output of
// the R and G components can differ by the error of the restored
// green plus the error of the restored component itself, as the
// reconstructed R is:
// R = R' + G' - floor(R' + G' / 4).
// Thus, the worst case is as given below.
m_usNear = near + ((3 * near + 3) >> 2);
// Allocate the labels.
m_pucInputLabels = (UBYTE *)m_pEnviron->AllocMem(m_ucDepth * sizeof(UBYTE));
m_pucShift = (UBYTE *)m_pEnviron->AllocMem(m_ucDepth * sizeof(UBYTE));
m_pbCentered = (bool *)m_pEnviron->AllocMem(m_ucDepth * sizeof(bool));
m_pusMatrix = (UWORD *)m_pEnviron->AllocMem(m_ucDepth * sizeof(UWORD) * (m_ucDepth - 1));
// This code assigns input labels identical to the component index, thus
// the input labels are 0,1,2, though not in that order. Green requires
// the components red and blue, thus has to go first.
m_pucInputLabels[0] = 1; // green
m_pucInputLabels[1] = 0; // red
m_pucInputLabels[2] = 2; // blue
// Shift by two and centered.
m_pucShift[0] = 2;
m_pbCentered[0] = true; // subtract
m_pusMatrix[0] = 1; // add red with factor of one
m_pusMatrix[1] = 1; // and blue with a factor of one
// Compute the output from R = G + Cr
m_pucShift[1] = 0;
m_pbCentered[1] = false;
m_pusMatrix[2] = 1; // add G
m_pusMatrix[3] = 0; // Cb is not used
// Compute the output from B = G + Cb
m_pucShift[2] = 0;
m_pbCentered[2] = false;
m_pusMatrix[4] = 1; // add G
m_pusMatrix[5] = 0; // B is not used
}
///
|