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
|
/*=========================================================================
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 "gdcmSplitMosaicFilter.h"
#include "gdcmCSAHeader.h"
#include "gdcmAttribute.h"
#include "gdcmImageHelper.h"
#include "gdcmDirectionCosines.h"
#include <math.h>
namespace gdcm
{
SplitMosaicFilter::SplitMosaicFilter():F(new File),I(new Image) {}
SplitMosaicFilter::~SplitMosaicFilter() = default;
namespace details {
/*
* gdcmDataExtra/gdcmSampleData/images_of_interest/MR-sonata-3D-as-Tile.dcm
*/
static bool reorganize_mosaic(const unsigned short *input, const unsigned int *inputdims,
unsigned int square, const unsigned int *outputdims, unsigned short *output )
{
for(unsigned int z = 0; z < outputdims[2]; ++z)
{
for(unsigned int y = 0; y < outputdims[1]; ++y)
{
for(unsigned int x = 0; x < outputdims[0]; ++x)
{
const size_t outputidx = x + y*outputdims[0] + z*outputdims[0]*outputdims[1];
const size_t inputidx = (x + (z%square)*outputdims[0]) +
(y + (z/square)*outputdims[1])*inputdims[0];
output[ outputidx ] = input[ inputidx ];
}
}
}
return true;
}
static bool reorganize_mosaic_invert(const unsigned short *input, const unsigned int *inputdims,
unsigned int square, const unsigned int *outputdims, unsigned short *output )
{
for(unsigned int z = 0; z < outputdims[2]; ++z)
{
for(unsigned int y = 0; y < outputdims[1]; ++y)
{
for(unsigned int x = 0; x < outputdims[0]; ++x)
{
const size_t outputidx = x + y*outputdims[0] + (outputdims[2]-1-z)*outputdims[0]*outputdims[1];
const size_t inputidx = (x + (z%square)*outputdims[0]) +
(y + (z/square)*outputdims[1])*inputdims[0];
output[ outputidx ] = input[ inputidx ];
}
}
}
return true;
}
}
void SplitMosaicFilter::SetImage(const Image& image)
{
I = image;
}
bool SplitMosaicFilter::GetAcquisitionSize(unsigned int size[2], DataSet const & ds)
{
bool found = true;
/*
Dimensions of the acquired frequency /phase data before reconstruction.
Multi-valued: frequency rows\frequency columns\phase rows\phase columns.
*/
Attribute<0x0018, 0x1310> acquisitionMatrix;
acquisitionMatrix.SetFromDataSet( ds );
const unsigned short *pMat = acquisitionMatrix.GetValues();
/*
The axis of phase encoding with respect to the image.
Enumerated Values:
ROW
phase encoded in rows.
COL
phase encoded in columns.
*/
Attribute<0x0018, 0x1312> inPlanePhaseEncodingDirection;
inPlanePhaseEncodingDirection.SetFromDataSet( ds );
CSComp val = inPlanePhaseEncodingDirection.GetValue();
std::string dir = val.Trim();
// http://dicom.nema.org/medical/dicom/current/output/chtml/part03/sect_C.8.3.html
if( dir == "COL" )
{
/* pay attention that size is: { columns , rows } */
// [256\0\0\134]
size[0] = pMat[3];
size[1] = pMat[0];
}
else if( dir == "ROW" )
{
// [0\512\213\0]
size[0] = pMat[1];
size[1] = pMat[2];
}
else
{
size[0] = size[1] = 0;
}
found = size[0] && size[1];
return found;
}
unsigned int SplitMosaicFilter::GetNumberOfImagesInMosaic( File const & file )
{
unsigned int numberOfImagesInMosaic = 0;
DataSet const &ds = file.GetDataSet();
CSAHeader csa;
const PrivateTag &t1 = csa.GetCSAImageHeaderInfoTag();
if( csa.LoadFromDataElement( ds.GetDataElement( t1 ) ) )
{
if( csa.FindCSAElementByName( "NumberOfImagesInMosaic" ) )
{
const CSAElement &csael4 = csa.GetCSAElementByName( "NumberOfImagesInMosaic" );
if( !csael4.IsEmpty() )
{
Element<VR::IS, VM::VM1> el4 = {{ 0 }};
el4.Set( csael4.GetValue() );
numberOfImagesInMosaic = el4.GetValue();
}
}
}
// try harder:
if( !numberOfImagesInMosaic )
{
// Some weird anonymizer remove the private creator but leave the actual element.
// oh well, let try harder:
// (0019,100a) US 72 # 2,1 NumberOfImagesInMosaic
PrivateTag t2 (0x0019,0x0a, "SIEMENS MR HEADER");
if( ds.FindDataElement( t2 ) )
{
const DataElement &de = ds.GetDataElement( t2 );
const ByteValue * bv = de.GetByteValue();
if( bv )
{
Element<VR::US, VM::VM1> el1 = {{0}};
std::istringstream is;
is.str( std::string( bv->GetPointer(), bv->GetLength() ) );
el1.Read( is );
numberOfImagesInMosaic = el1.GetValue();
}
}
}
std::vector<unsigned int> colrow =
ImageHelper::GetDimensionsValue( file );
// try super harder. Pay attention that trailing black image cannot be removed here.
if( !numberOfImagesInMosaic )
{
unsigned int mosaicSize[2];
if( GetAcquisitionSize(mosaicSize, ds) )
{
if( colrow[0] % mosaicSize[0] == 0 &&
colrow[1] % mosaicSize[1] == 0 )
{
numberOfImagesInMosaic =
colrow[0] / mosaicSize[0] *
colrow[1] / mosaicSize[1];
// MultiFrame will contain trailing empty slices:
gdcmWarningMacro( "NumberOfImagesInMosaic was not found. Volume will be padded with black image." );
}
else
{
// assume interpolation:
unsigned int mosSize = std::max( mosaicSize[0], mosaicSize[1] );
if( colrow[0] % mosSize == 0 &&
colrow[1] % mosSize == 0 )
{
gdcmDebugMacro( "Matrix Acquisition does not match exactly. Using max value." );
numberOfImagesInMosaic =
colrow[0] / mosSize *
colrow[1] / mosSize;
// MultiFrame will contain trailing empty slices:
gdcmWarningMacro( "NumberOfImagesInMosaic was not found. Volume will be padded with black image." );
}
else
{
gdcmErrorMacro( "NumberOfImagesInMosaic cannot be computed from Img Acq: " << mosaicSize[0] << "," << mosaicSize[1] );
}
}
}
}
return numberOfImagesInMosaic;
}
bool SplitMosaicFilter::ComputeMOSAICDimensions( unsigned int dims[3] )
{
unsigned int numberOfImagesInMosaic = GetNumberOfImagesInMosaic( GetFile() );
if( !numberOfImagesInMosaic )
{
gdcmErrorMacro( "Could not find/compute NumberOfImagesInMosaic" );
return false;
}
std::vector<unsigned int> colrow =
ImageHelper::GetDimensionsValue( GetFile() );
dims[0] = colrow[0];
dims[1] = colrow[1];
const unsigned int div = (unsigned int )ceil(sqrt( (double)numberOfImagesInMosaic ) );
dims[0] /= div;
dims[1] /= div;
dims[2] = numberOfImagesInMosaic;
return true;
}
bool SplitMosaicFilter::ComputeMOSAICSliceNormal( double slicenormalvector[3], bool & inverted )
{
CSAHeader csa;
DataSet& ds = GetFile().GetDataSet();
double normal[3];
bool snvfound = false;
const PrivateTag &t1 = csa.GetCSAImageHeaderInfoTag();
static const char snvstr[] = "SliceNormalVector";
if( csa.LoadFromDataElement( ds.GetDataElement( t1 ) ) )
{
if( csa.FindCSAElementByName( snvstr ) )
{
const CSAElement &snv_csa = csa.GetCSAElementByName( snvstr );
if( !snv_csa.IsEmpty() )
{
const ByteValue * bv = snv_csa.GetByteValue();
const std::string str(bv->GetPointer(), bv->GetLength());
std::istringstream is;
is.str( str );
char sep;
double *snv = normal;
if( is >> snv[0] >> sep >> snv[1] >> sep >> snv[2] )
{
snvfound = true;
}
}
}
}
if( snvfound )
{
Attribute<0x20,0x37> iop;
iop.SetFromDataSet( ds );
DirectionCosines dc( iop.GetValues() );
double z[3];
dc.Cross (z);
const double snv_dot = dc.Dot( normal, z );
if( fabs(1. - snv_dot) < 1e-6 )
{
gdcmDebugMacro("Same direction");
inverted = false;
}
else if( fabs(-1. - snv_dot) < 1e-6 )
{
gdcmWarningMacro("SliceNormalVector is opposite direction");
inverted = true;
}
else
{
gdcmErrorMacro( "Unexpected normal for SliceNormalVector, dot is: " << snv_dot );
return false;
}
}
for( int i = 0; i < 3; ++i)
slicenormalvector[i] = normal[i];
return snvfound;
}
bool SplitMosaicFilter::ComputeMOSAICSlicePosition( double pos[3], bool )
{
CSAHeader csa;
DataSet& ds = GetFile().GetDataSet();
MrProtocol mrprot;
if( !csa.GetMrProtocol(ds, mrprot) ) return false;
MrProtocol::SliceArray sa;
bool b = mrprot.GetSliceArray(sa);
if( !b ) return false;
size_t size = sa.Slices.size();
if( !size ) return false;
#if 0
{
double z[3];
for( int i = 0; i < size; ++i )
{
MrProtocol::Slice & slice = sa.Slices[i];
MrProtocol::Vector3 & p = slice.Position;
z[0] = p.dSag;
z[1] = p.dCor;
z[2] = p.dTra;
const double snv_dot = DirectionCosines::Dot( slicenormalvector, z );
if( (1. - snv_dot) < 1e-6 )
{
gdcmErrorMacro("Invalid direction found");
return false;
}
}
}
#endif
size_t index = 0;
MrProtocol::Slice & slice = sa.Slices[index];
MrProtocol::Vector3 & p = slice.Position;
pos[0] = p.dSag;
pos[1] = p.dCor;
pos[2] = p.dTra;
return true;
}
bool SplitMosaicFilter::Split()
{
bool success = true;
DataSet& ds = GetFile().GetDataSet();
unsigned int dims[3] = {0,0,0};
if( ! ComputeMOSAICDimensions( dims ) )
{
return false;
}
const unsigned int div = (unsigned int )ceil(sqrt( (double)dims[2]) );
bool inverted;
double normal[3];
bool hasOriginCSA = true;
bool hasNormalCSA = true;
if( !ComputeMOSAICSliceNormal( normal, inverted ) )
{
gdcmDebugMacro( "Normal will not be accurate" );
hasNormalCSA = false;
}
(void)hasNormalCSA;
double origin[3];
if( !ComputeMOSAICSlicePosition( origin, inverted ) )
{
gdcmWarningMacro( "Origin will not be accurate" );
hasOriginCSA = false;
}
const Image &inputimage = GetImage();
if( inputimage.GetPixelFormat() != PixelFormat::UINT16 )
{
gdcmErrorMacro( "Expecting UINT16 PixelFormat" );
return false;
}
unsigned long l = inputimage.GetBufferLength();
std::vector<char> buf;
buf.resize(l);
inputimage.GetBuffer( &buf[0] );
DataElement pixeldata( Tag(0x7fe0,0x0010) );
std::vector<char> outbuf;
outbuf.resize(l);
bool b;
if( inverted )
{
b = details::reorganize_mosaic_invert(
(unsigned short*)(void*)&buf[0], inputimage.GetDimensions(), div, dims,
(unsigned short*)(void*)&outbuf[0] );
}
else
{
b = details::reorganize_mosaic(
(unsigned short*)(void*)&buf[0], inputimage.GetDimensions(), div, dims,
(unsigned short*)(void*)&outbuf[0] );
}
if( !b ) return false;
VL::Type outbufSize = (VL::Type)outbuf.size();
pixeldata.SetByteValue( &outbuf[0], outbufSize );
Image &image = GetImage();
const TransferSyntax &ts = image.GetTransferSyntax();
if( ts.IsExplicit() )
{
image.SetTransferSyntax( TransferSyntax::ExplicitVRLittleEndian );
}
else
{
image.SetTransferSyntax( TransferSyntax::ImplicitVRLittleEndian );
}
image.SetNumberOfDimensions( 3 );
image.SetDimension(0, dims[0] );
image.SetDimension(1, dims[1] );
image.SetDimension(2, dims[2] );
// Fix origin (direction is ok since we reorganize the tiles):
if( hasOriginCSA )
image.SetOrigin( origin );
PhotometricInterpretation pi;
pi = PhotometricInterpretation::MONOCHROME2;
image.SetDataElement( pixeldata );
// Second part need to fix the Media Storage, now that this is not a single slice anymore
MediaStorage ms = MediaStorage::SecondaryCaptureImageStorage;
ms.SetFromFile( GetFile() );
if( ms == MediaStorage::MRImageStorage )
{
// Ok make it a MediaStorage::EnhancedMRImageStorage
// ms = MediaStorage::EnhancedMRImageStorage;
//
// // Remove old MRImageStorage attribute then:
// ds.Remove( Tag(0x0020,0x0032) ); // Image Position (Patient)
// ds.Remove( Tag(0x0020,0x0037) ); // Image Orientation (Patient)
// ds.Remove( Tag(0x0028,0x1052) ); // Rescale Intercept
// ds.Remove( Tag(0x0028,0x1053) ); // Rescale Slope
// ds.Remove( Tag(0x0028,0x1054) ); // Rescale Type
}
else
{
gdcmDebugMacro( "Expecting MRImageStorage" );
return false;
}
DataElement de( Tag(0x0008, 0x0016) );
const char* msstr = MediaStorage::GetMSString(ms);
VL::Type strlenMsstr = (VL::Type)strlen(msstr);
de.SetByteValue( msstr, strlenMsstr );
de.SetVR( Attribute<0x0008, 0x0016>::GetVR() );
ds.Replace( de );
return success;
}
} // end namespace gdcm
|