comparison Framework/Deprecated/Loaders/OrthancMultiframeVolumeLoader.cpp @ 1297:6ab03e429f06 broker

integration mainline->broker
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 23 Feb 2020 15:32:24 +0100
parents Framework/Loaders/OrthancMultiframeVolumeLoader.cpp@86400fa16091 Framework/Loaders/OrthancMultiframeVolumeLoader.cpp@7ec8fea061b9
children c38c89684d83
comparison
equal deleted inserted replaced
1281:68579a31eeb4 1297:6ab03e429f06
343 } 343 }
344 else 344 else
345 { 345 {
346 OrthancStone::ImageBuffer3D& target = volume_->GetPixelData(); 346 OrthancStone::ImageBuffer3D& target = volume_->GetPixelData();
347 347
348 const uint64_t bpp = target.GetBytesPerPixel();
349 const uint64_t width = target.GetWidth(); 348 const uint64_t width = target.GetWidth();
350 const uint64_t height = target.GetHeight(); 349 const uint64_t height = target.GetHeight();
351 const uint64_t depth = target.GetDepth(); 350 const uint64_t depth = target.GetDepth();
352 const uint64_t voxelCount = width * height * depth; 351 const uint64_t voxelCount = width * height * depth;
353 352