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
|
/*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "gdcmRAWCodec.h"
#include "gdcmTransferSyntax.h"
#include "gdcmByteSwap.txx"
#include "gdcmDataElement.h"
#include "gdcmSequenceOfFragments.h"
#include "gdcmUnpacker12Bits.h"
#include <limits>
#include <sstream>
#include <cstring>
namespace gdcm
{
class RAWInternals
{
public:
};
RAWCodec::RAWCodec()
{
Internals = new RAWInternals;
}
RAWCodec::~RAWCodec()
{
delete Internals;
}
bool RAWCodec::CanCode(TransferSyntax const &ts) const
{
return ts == TransferSyntax::ImplicitVRLittleEndian
|| ts == TransferSyntax::ExplicitVRLittleEndian
|| ts == TransferSyntax::ExplicitVRBigEndian
|| ts == TransferSyntax::ImplicitVRBigEndianPrivateGE
|| ts == TransferSyntax::DeflatedExplicitVRLittleEndian;
}
bool RAWCodec::CanDecode(TransferSyntax const &ts) const
{
return ts == TransferSyntax::ImplicitVRLittleEndian
|| ts == TransferSyntax::ExplicitVRLittleEndian
|| ts == TransferSyntax::ExplicitVRBigEndian
|| ts == TransferSyntax::ImplicitVRBigEndianPrivateGE
|| ts == TransferSyntax::DeflatedExplicitVRLittleEndian;
}
bool RAWCodec::Code(DataElement const &in, DataElement &out)
{
out = in;
//assert(0);
return true;
}
bool RAWCodec::DecodeBytes(const char* inBytes, size_t inBufferLength,
char* outBytes, size_t inOutBufferLength)
{
// First let's see if we can do a fast-path:
if( !NeedByteSwap &&
!RequestPaddedCompositePixelCode &&
// PI == PhotometricInterpretation::MONOCHROME2 &&
/*!PlanarConfiguration &&*/ !RequestPlanarConfiguration &&
GetPixelFormat().GetBitsAllocated() != 12 &&
!NeedOverlayCleanup )
{
assert( !NeedOverlayCleanup );
assert( PI != PhotometricInterpretation::YBR_PARTIAL_422 );
assert( PI != PhotometricInterpretation::YBR_PARTIAL_420 );
assert( PI != PhotometricInterpretation::YBR_ICT );
assert( this->GetPixelFormat() != PixelFormat::UINT12 );
assert( this->GetPixelFormat() != PixelFormat::INT12 );
// DermaColorLossLess.dcm
//assert(inBufferLength == inOutBufferLength || inBufferLength == inOutBufferLength + 1);
// What if the user request a subportion of the image:
// this happen in the case of MOSAIC image, where we are only interested in the non-zero
// pixel of the tiled image.
// removal of this assert also solve an issue with: SIEMENS_GBS_III-16-ACR_NEMA_1.acr
// where we need to discard trailing pixel data bytes.
if( inOutBufferLength <= inBufferLength )
{
memcpy(outBytes, inBytes, inOutBufferLength);
}
else
{
gdcmWarningMacro( "Requesting too much data. Truncating result" );
memcpy(outBytes, inBytes, inBufferLength);
}
return true;
}
// else
assert( inBytes );
assert( outBytes );
std::stringstream is;
is.write(inBytes, inBufferLength);
std::stringstream os;
bool r = DecodeByStreams(is, os);
assert( r );
if(!r) return false;
std::string str = os.str();
//std::string::size_type check = str.size();//unused
if( this->GetPixelFormat() == PixelFormat::UINT12 ||
this->GetPixelFormat() == PixelFormat::INT12 )
{
size_t len = str.size() * 16 / 12;
char * copy = new char[len];
bool b = Unpacker12Bits::Unpack(copy, &str[0], str.size() ); (void)b;
assert( b );
assert (len == inOutBufferLength);
assert(inOutBufferLength == len);
memcpy(outBytes, copy, len);
delete[] copy;
this->GetPixelFormat().SetBitsAllocated( 16 );
}
else
{
// DermaColorLossLess.dcm
//assert (check == inOutBufferLength || check == inOutBufferLength + 1);
// problem with: SIEMENS_GBS_III-16-ACR_NEMA_1.acr
memcpy(outBytes, str.c_str(), inOutBufferLength);
}
return r;
}
bool RAWCodec::Decode(DataElement const &in, DataElement &out)
{
// First let's see if we can do a fast-path:
if( !NeedByteSwap &&
!RequestPaddedCompositePixelCode &&
PI == PhotometricInterpretation::MONOCHROME2 &&
!PlanarConfiguration && !RequestPlanarConfiguration &&
GetPixelFormat().GetBitsAllocated() != 12 &&
!NeedOverlayCleanup )
{
assert( this->GetPixelFormat() != PixelFormat::UINT12 );
assert( this->GetPixelFormat() != PixelFormat::INT12 );
out = in;
return true;
}
// else
const ByteValue *bv = in.GetByteValue();
assert( bv );
std::stringstream is;
is.write(bv->GetPointer(), bv->GetLength());
std::stringstream os;
bool r = DecodeByStreams(is, os);
if(!r) return false;
assert( r );
std::string str = os.str();
//std::string::size_type check = str.size();
out = in;
if( this->GetPixelFormat() == PixelFormat::UINT12 ||
this->GetPixelFormat() == PixelFormat::INT12 )
{
size_t len = str.size() * 16 / 12;
char * copy = new char[len];//why use an array, and not a vector?
bool b = Unpacker12Bits::Unpack(copy, &str[0], str.size() );
assert( b );
(void)b;
VL::Type lenSize = (VL::Type)len;
out.SetByteValue( copy, lenSize );
delete[] copy;
this->GetPixelFormat().SetBitsAllocated( 16 );
}
else
{
VL::Type strSize = (VL::Type) str.size();
out.SetByteValue( &str[0], strSize);
}
return r;
}
bool RAWCodec::DecodeByStreams(std::istream &is, std::ostream &os)
{
bool r = ImageCodec::DecodeByStreams(is, os);
return r;
}
bool RAWCodec::GetHeaderInfo(std::istream &, TransferSyntax &ts)
{
ts = TransferSyntax::ExplicitVRLittleEndian;
if( NeedByteSwap )
{
ts = TransferSyntax::ImplicitVRBigEndianPrivateGE;
}
return true;
}
ImageCodec * RAWCodec::Clone() const
{
return NULL;
}
} // end namespace gdcm
|