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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
|
/*=========================================================================
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 "gdcmImageRegionReader.h"
#include "gdcmImageHelper.h"
#include "gdcmBoxRegion.h"
#include "gdcmRAWCodec.h"
#include "gdcmRLECodec.h"
#include "gdcmJPEG2000Codec.h"
#include "gdcmJPEGCodec.h"
#include "gdcmJPEGLSCodec.h"
namespace gdcm
{
class ImageRegionReaderInternals
{
public:
ImageRegionReaderInternals()
{
TheRegion = NULL;
Modified = false;
FileOffset = -1;
}
~ImageRegionReaderInternals()
{
delete TheRegion;
}
void SetRegion(Region const & r)
{
delete TheRegion;
TheRegion = r.Clone();
assert( TheRegion );
Modified = true;
}
Region *GetRegion() const
{
return TheRegion;
}
std::streampos GetFileOffset() const
{
return FileOffset;
}
void SetFileOffset( std::streampos f )
{
FileOffset = f;
}
private:
Region *TheRegion;
bool Modified;
std::streamoff FileOffset;
};
ImageRegionReader::ImageRegionReader()
{
Internals = new ImageRegionReaderInternals;
}
ImageRegionReader::~ImageRegionReader()
{
delete Internals;
}
void ImageRegionReader::SetRegion(Region const & region)
{
Internals->SetRegion( region );
}
Region const &ImageRegionReader::GetRegion() const
{
return *Internals->GetRegion();
}
size_t ImageRegionReader::ComputeBufferLength() const
{
// Is this a legal extent:
size_t npixels = 0;
if( Internals->GetRegion() )
{
if( !Internals->GetRegion()->IsValid() )
{
gdcmDebugMacro( "Sorry not a valid extent. Giving up" );
return 0;
}
npixels = this->Internals->GetRegion()->Area();
}
else
{
std::vector<unsigned int> dims = ImageHelper::GetDimensionsValue(GetFile());
BoxRegion full;
// Use BoxRegion to do robust computation
full.SetDomain(0, dims[0] - 1,
0, dims[1] - 1,
0, dims[2] - 1 );
if( full.IsValid() )
{
gdcmDebugMacro( "Sorry not a valid extent. Giving up" );
return 0;
}
npixels = full.Area();
}
const PixelFormat pixelInfo = ImageHelper::GetPixelFormatValue(GetFile());
const size_t bytesPerPixel = pixelInfo.GetPixelSize();
return npixels*bytesPerPixel;
}
bool ImageRegionReader::ReadInformation()
{
std::set<Tag> st;
Tag tpixeldata(0x7fe0, 0x0010); // never read this one
st.insert(tpixeldata);
if (!ReadUpToTag(tpixeldata, st))
{
gdcmWarningMacro("Failed ReadUpToTag.");
return false;
}
const bool iseof = GetStreamPtr()->eof();
if( iseof )
{
gdcmDebugMacro( "No Pixel Data, sorry" );
return false;
}
std::streampos fileoffset = GetStreamPtr()->tellg();
assert( fileoffset != std::streampos(-1) );
Internals->SetFileOffset( fileoffset );
const File &file = GetFile();
const DataSet &ds = file.GetDataSet(); (void)ds;
//std::cout << ds << std::endl;
MediaStorage ms;
ms.SetFromFile(file);
assert( ms != MediaStorage::VLWholeSlideMicroscopyImageStorage );
if( !MediaStorage::IsImage( ms ) )
{
gdcmDebugMacro( "Not an image recognized. Giving up");
return false;
}
// populate Image meta data
if( !ReadImageInternal(ms, false) )
{
return false;
}
// FIXME Copy/paste from ImageReader::ReadImage
Image& pixeldata = GetImage();
// 4 1/2 Let's do Pixel Spacing
std::vector<double> spacing = ImageHelper::GetSpacingValue(*F);
// FIXME: Only SC is allowed not to have spacing:
if( !spacing.empty() )
{
assert( spacing.size() >= pixeldata.GetNumberOfDimensions() ); // In MR, you can have a Z spacing, but store a 2D image
pixeldata.SetSpacing( &spacing[0] );
if( spacing.size() > pixeldata.GetNumberOfDimensions() ) // FIXME HACK
{
pixeldata.SetSpacing(pixeldata.GetNumberOfDimensions(), spacing[pixeldata.GetNumberOfDimensions()] );
}
}
// 4 2/3 Let's do Origin
std::vector<double> origin = ImageHelper::GetOriginValue(*F);
if( !origin.empty() )
{
pixeldata.SetOrigin( &origin[0] );
if( origin.size() > pixeldata.GetNumberOfDimensions() ) // FIXME HACK
{
pixeldata.SetOrigin(pixeldata.GetNumberOfDimensions(), origin[pixeldata.GetNumberOfDimensions()] );
}
}
std::vector<double> dircos = ImageHelper::GetDirectionCosinesValue(*F);
if( !dircos.empty() )
{
pixeldata.SetDirectionCosines( &dircos[0] );
}
// Do the Rescale Intercept & Slope
std::vector<double> is = ImageHelper::GetRescaleInterceptSlopeValue(*F);
pixeldata.SetIntercept( is[0] );
pixeldata.SetSlope( is[1] );
return true;
}
bool ImageRegionReader::ReadRAWIntoBuffer(char *buffer, size_t buflen)
{
(void)buflen;
std::vector<unsigned int> dimensions = ImageHelper::GetDimensionsValue(GetFile());
PixelFormat pixelInfo = ImageHelper::GetPixelFormatValue(GetFile());
const FileMetaInformation &header = GetFile().GetHeader();
const TransferSyntax &ts = header.GetDataSetTransferSyntax();
bool needbyteswap = (ts == TransferSyntax::ImplicitVRBigEndianPrivateGE || ts == TransferSyntax::ExplicitVRBigEndian );
RAWCodec theCodec;
if( !theCodec.CanDecode( ts ) ) return false;
theCodec.SetPlanarConfiguration(
ImageHelper::GetPlanarConfigurationValue(GetFile()));
theCodec.SetPhotometricInterpretation(
ImageHelper::GetPhotometricInterpretationValue(GetFile()));
//theCodec.SetLUT( GetLUT() );
theCodec.SetPixelFormat( ImageHelper::GetPixelFormatValue(GetFile()) );
theCodec.SetNeedByteSwap( needbyteswap );
//theCodec.SetNeedOverlayCleanup( AreOverlaysInPixelData() );
theCodec.SetDimensions(ImageHelper::GetDimensionsValue(GetFile()));
std::istream* theStream = GetStreamPtr();
const BoxRegion &boundingbox = this->Internals->GetRegion()->ComputeBoundingBox();
unsigned int xmin = boundingbox.GetXMin();
unsigned int xmax = boundingbox.GetXMax();
unsigned int ymin = boundingbox.GetYMin();
unsigned int ymax = boundingbox.GetYMax();
unsigned int zmin = boundingbox.GetZMin();
unsigned int zmax = boundingbox.GetZMax();
assert( xmax >= xmin );
assert( ymax >= ymin );
unsigned int rowsize = xmax - xmin + 1;
unsigned int colsize = ymax - ymin + 1;
unsigned int bytesPerPixel = pixelInfo.GetPixelSize();
std::vector<char> buffer1;
buffer1.resize( rowsize*bytesPerPixel );
char *tmpBuffer1 = &buffer1[0];
std::vector<char> buffer2;
buffer2.resize( rowsize*bytesPerPixel );
char *tmpBuffer2 = &buffer2[0];
unsigned int y, z;
std::streamoff theOffset;
for (z = zmin; z <= zmax; ++z)
{
for (y = ymin; y <= ymax; ++y)
{
theStream->seekg(std::ios::beg);
theOffset = (size_t)Internals->GetFileOffset() + (z*dimensions[1]*dimensions[0] + y*dimensions[0] + xmin)*bytesPerPixel;
theStream->seekg(theOffset);
theStream->read(tmpBuffer1, rowsize*bytesPerPixel);
if (!theCodec.DecodeBytes(tmpBuffer1, rowsize*bytesPerPixel,
tmpBuffer2, rowsize*bytesPerPixel))
{
return false;
}
#if 0
const char * check = &(buffer[((z-zmin)*rowsize*colsize + (y-ymin)*rowsize)*bytesPerPixel]);
assert( check >= buffer && check < buffer + buflen );
assert( check + rowsize*bytesPerPixel <= buffer + buflen );
#endif
memcpy(&(buffer[((z-zmin)*rowsize*colsize + (y-ymin)*rowsize)*bytesPerPixel]),
tmpBuffer2, rowsize*bytesPerPixel);
}
}
return true;
}
bool ImageRegionReader::ReadRLEIntoBuffer(char *buffer, size_t buflen)
{
(void)buflen;
std::vector<unsigned int> dimensions = ImageHelper::GetDimensionsValue(GetFile());
//const PixelFormat pixelInfo = ImageHelper::GetPixelFormatValue(GetFile());
const FileMetaInformation &header = GetFile().GetHeader();
const TransferSyntax &ts = header.GetDataSetTransferSyntax();
bool needbyteswap = (ts == TransferSyntax::ImplicitVRBigEndianPrivateGE || ts == TransferSyntax::ExplicitVRBigEndian );
RLECodec theCodec;
if( !theCodec.CanDecode( ts ) ) return false;
theCodec.SetPlanarConfiguration(
ImageHelper::GetPlanarConfigurationValue(GetFile()));
theCodec.SetPhotometricInterpretation(
ImageHelper::GetPhotometricInterpretationValue(GetFile()));
//theCodec.SetLUT( GetLUT() );
theCodec.SetPixelFormat( ImageHelper::GetPixelFormatValue(GetFile()) );
theCodec.SetNeedByteSwap( needbyteswap );
//theCodec.SetNeedOverlayCleanup( AreOverlaysInPixelData() );
std::vector<unsigned int> d = ImageHelper::GetDimensionsValue(GetFile());
theCodec.SetDimensions(d );
theCodec.SetNumberOfDimensions( 2 );
if( d[2] > 1 )
theCodec.SetNumberOfDimensions( 3 );
std::istream* theStream = GetStreamPtr();
const BoxRegion &boundingbox = this->Internals->GetRegion()->ComputeBoundingBox();
unsigned int xmin = boundingbox.GetXMin();
unsigned int xmax = boundingbox.GetXMax();
unsigned int ymin = boundingbox.GetYMin();
unsigned int ymax = boundingbox.GetYMax();
unsigned int zmin = boundingbox.GetZMin();
unsigned int zmax = boundingbox.GetZMax();
assert( xmax >= xmin );
assert( ymax >= ymin );
bool ret = theCodec.DecodeExtent(
buffer,
xmin, xmax,
ymin, ymax,
zmin, zmax,
*theStream
);
return ret;
}
bool ImageRegionReader::ReadJPEG2000IntoBuffer(char *buffer, size_t buflen)
{
(void)buflen;
std::vector<unsigned int> dimensions = ImageHelper::GetDimensionsValue(GetFile());
//const PixelFormat pixelInfo = ImageHelper::GetPixelFormatValue(GetFile());
const FileMetaInformation &header = GetFile().GetHeader();
const TransferSyntax &ts = header.GetDataSetTransferSyntax();
bool needbyteswap = (ts == TransferSyntax::ImplicitVRBigEndianPrivateGE || ts == TransferSyntax::ExplicitVRBigEndian );
JPEG2000Codec theCodec;
if( !theCodec.CanDecode( ts ) ) return false;
theCodec.SetPlanarConfiguration(
ImageHelper::GetPlanarConfigurationValue(GetFile()));
theCodec.SetPhotometricInterpretation(
ImageHelper::GetPhotometricInterpretationValue(GetFile()));
//theCodec.SetLUT( GetLUT() );
theCodec.SetPixelFormat( ImageHelper::GetPixelFormatValue(GetFile()) );
theCodec.SetNeedByteSwap( needbyteswap );
//theCodec.SetNeedOverlayCleanup( AreOverlaysInPixelData() );
std::vector<unsigned int> d = ImageHelper::GetDimensionsValue(GetFile());
theCodec.SetDimensions(d );
theCodec.SetNumberOfDimensions( 2 );
if( d[2] > 1 )
theCodec.SetNumberOfDimensions( 3 );
std::istream* theStream = GetStreamPtr();
const BoxRegion &boundingbox = this->Internals->GetRegion()->ComputeBoundingBox();
unsigned int xmin = boundingbox.GetXMin();
unsigned int xmax = boundingbox.GetXMax();
unsigned int ymin = boundingbox.GetYMin();
unsigned int ymax = boundingbox.GetYMax();
unsigned int zmin = boundingbox.GetZMin();
unsigned int zmax = boundingbox.GetZMax();
assert( xmax >= xmin );
assert( ymax >= ymin );
bool ret = theCodec.DecodeExtent(
buffer,
xmin, xmax,
ymin, ymax,
zmin, zmax,
*theStream
);
return ret;
}
bool ImageRegionReader::ReadJPEGIntoBuffer(char *buffer, size_t buflen)
{
(void)buflen;
std::vector<unsigned int> dimensions = ImageHelper::GetDimensionsValue(GetFile());
//const PixelFormat pixelInfo = ImageHelper::GetPixelFormatValue(GetFile());
const FileMetaInformation &header = GetFile().GetHeader();
const TransferSyntax &ts = header.GetDataSetTransferSyntax();
bool needbyteswap = (ts == TransferSyntax::ImplicitVRBigEndianPrivateGE || ts == TransferSyntax::ExplicitVRBigEndian );
JPEGCodec theCodec;
if( !theCodec.CanDecode( ts ) ) return false;
theCodec.SetPlanarConfiguration(
ImageHelper::GetPlanarConfigurationValue(GetFile()));
theCodec.SetPhotometricInterpretation(
ImageHelper::GetPhotometricInterpretationValue(GetFile()));
//theCodec.SetLUT( GetLUT() );
theCodec.SetNeedByteSwap( needbyteswap );
//theCodec.SetNeedOverlayCleanup( AreOverlaysInPixelData() );
std::vector<unsigned int> d = ImageHelper::GetDimensionsValue(GetFile());
theCodec.SetDimensions(d );
theCodec.SetNumberOfDimensions( 2 );
if( d[2] > 1 )
theCodec.SetNumberOfDimensions( 3 );
// last call:
theCodec.SetPixelFormat( ImageHelper::GetPixelFormatValue(GetFile()) );
std::istream* theStream = GetStreamPtr();
BoxRegion boundingbox;
if( Internals->GetRegion() )
boundingbox = this->Internals->GetRegion()->ComputeBoundingBox();
else
{
std::vector<unsigned int> dims = ImageHelper::GetDimensionsValue(GetFile());
boundingbox.SetDomain(
0, dims[0] - 1,
0, dims[1] - 1,
0, dims[2] - 1 );
}
unsigned int xmin = boundingbox.GetXMin();
unsigned int xmax = boundingbox.GetXMax();
unsigned int ymin = boundingbox.GetYMin();
unsigned int ymax = boundingbox.GetYMax();
unsigned int zmin = boundingbox.GetZMin();
unsigned int zmax = boundingbox.GetZMax();
assert( xmax >= xmin );
assert( ymax >= ymin );
bool ret = theCodec.DecodeExtent(
buffer,
xmin, xmax,
ymin, ymax,
zmin, zmax,
*theStream
);
return ret;
}
bool ImageRegionReader::ReadJPEGLSIntoBuffer(char *buffer, size_t buflen)
{
(void)buflen;
std::vector<unsigned int> dimensions = ImageHelper::GetDimensionsValue(GetFile());
//const PixelFormat pixelInfo = ImageHelper::GetPixelFormatValue(GetFile());
const FileMetaInformation &header = GetFile().GetHeader();
const TransferSyntax &ts = header.GetDataSetTransferSyntax();
bool needbyteswap = (ts == TransferSyntax::ImplicitVRBigEndianPrivateGE || ts == TransferSyntax::ExplicitVRBigEndian );
JPEGLSCodec theCodec;
if( !theCodec.CanDecode( ts ) ) return false;
theCodec.SetPlanarConfiguration(
ImageHelper::GetPlanarConfigurationValue(GetFile()));
theCodec.SetPhotometricInterpretation(
ImageHelper::GetPhotometricInterpretationValue(GetFile()));
//theCodec.SetLUT( GetLUT() );
theCodec.SetPixelFormat( ImageHelper::GetPixelFormatValue(GetFile()) );
theCodec.SetNeedByteSwap( needbyteswap );
//theCodec.SetNeedOverlayCleanup( AreOverlaysInPixelData() );
std::vector<unsigned int> d = ImageHelper::GetDimensionsValue(GetFile());
theCodec.SetDimensions(d );
theCodec.SetNumberOfDimensions( 2 );
if( d[2] > 1 )
theCodec.SetNumberOfDimensions( 3 );
std::istream* theStream = GetStreamPtr();
const BoxRegion &boundingbox = this->Internals->GetRegion()->ComputeBoundingBox();
unsigned int xmin = boundingbox.GetXMin();
unsigned int xmax = boundingbox.GetXMax();
unsigned int ymin = boundingbox.GetYMin();
unsigned int ymax = boundingbox.GetYMax();
unsigned int zmin = boundingbox.GetZMin();
unsigned int zmax = boundingbox.GetZMax();
assert( xmax >= xmin );
assert( ymax >= ymin );
bool ret = theCodec.DecodeExtent(
buffer,
xmin, xmax,
ymin, ymax,
zmin, zmax,
*theStream
);
return ret;
}
bool ImageRegionReader::ReadIntoBuffer(char *buffer, size_t buflen)
{
size_t thelen = ComputeBufferLength();
if( thelen == 0 )
{
// does not sound right, something seems odd.
gdcmDebugMacro( "Cannot load an image of 0 bytes" );
return false;
}
if( buflen < thelen )
{
gdcmDebugMacro( "buffer cannot be smaller than computed buffer length" );
return false;
}
assert( Internals->GetFileOffset() != std::streampos(-1) );
gdcmDebugMacro( "Using FileOffset: " << Internals->GetFileOffset() );
std::istream* theStream = GetStreamPtr();
theStream->seekg( Internals->GetFileOffset() );
bool success = false;
if( !success ) success = ReadRAWIntoBuffer(buffer, buflen);
if( !success ) success = ReadRLEIntoBuffer(buffer, buflen);
if( !success ) success = ReadJPEGIntoBuffer(buffer, buflen);
if( !success ) success = ReadJPEGLSIntoBuffer(buffer, buflen);
if( !success ) success = ReadJPEG2000IntoBuffer(buffer, buflen);
return success;
}
bool ImageRegionReader::Read()
{
return false;
}
} // end namespace gdcm
|