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
|
/*
*
* Copyright (C) 1998-2024, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmpstat
*
* Author: Marco Eichelberg
*
* Purpose:
* classes: DVPSDisplayedArea
*
*/
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmpstat/dvpsda.h"
#include "dcmtk/ofstd/ofstring.h"
#include "dcmtk/ofstd/ofstd.h"
#include "dcmtk/dcmpstat/dvpsri.h" /* for DVPSReferencedImage */
#include "dcmtk/dcmpstat/dvpsrsl.h" /* DVPSReferencedSeries_PList */
#include "dcmtk/dcmpstat/dvpsdef.h" /* for constants and macros */
#include "dcmtk/ofstd/ofstd.h"
#include "dcmtk/dcmpstat/dvpsrs.h" /* for DVPSReferencedSeries, needed by MSVC5 with STL */
/* --------------- class DVPSDisplayedArea --------------- */
DVPSDisplayedArea::DVPSDisplayedArea()
: referencedImageList()
, displayedAreaTopLeftHandCorner(DCM_DisplayedAreaTopLeftHandCorner)
, displayedAreaBottomRightHandCorner(DCM_DisplayedAreaBottomRightHandCorner)
, presentationSizeMode(DCM_PresentationSizeMode)
, presentationPixelSpacing(DCM_PresentationPixelSpacing)
, presentationPixelAspectRatio(DCM_PresentationPixelAspectRatio)
, presentationPixelMagnificationRatio(DCM_PresentationPixelMagnificationRatio)
{
}
DVPSDisplayedArea::DVPSDisplayedArea(const DVPSDisplayedArea& copy)
: referencedImageList(copy.referencedImageList)
, displayedAreaTopLeftHandCorner(copy.displayedAreaTopLeftHandCorner)
, displayedAreaBottomRightHandCorner(copy.displayedAreaBottomRightHandCorner)
, presentationSizeMode(copy.presentationSizeMode)
, presentationPixelSpacing(copy.presentationPixelSpacing)
, presentationPixelAspectRatio(copy.presentationPixelAspectRatio)
, presentationPixelMagnificationRatio(copy.presentationPixelMagnificationRatio)
{
}
DVPSDisplayedArea::~DVPSDisplayedArea()
{
}
OFCondition DVPSDisplayedArea::read(DcmItem &dset)
{
OFCondition result = EC_Normal;
DcmStack stack;
OFString aString;
READ_FROM_DATASET(DcmSignedLong, EVR_SL, displayedAreaTopLeftHandCorner)
READ_FROM_DATASET(DcmSignedLong, EVR_SL, displayedAreaBottomRightHandCorner)
READ_FROM_DATASET(DcmCodeString, EVR_CS, presentationSizeMode)
READ_FROM_DATASET(DcmDecimalString, EVR_DS, presentationPixelSpacing)
READ_FROM_DATASET(DcmIntegerString, EVR_IS, presentationPixelAspectRatio)
READ_FROM_DATASET(DcmFloatingPointSingle, EVR_FL, presentationPixelMagnificationRatio)
if (result==EC_Normal) result = referencedImageList.read(dset);
/* Now perform basic sanity checks */
if (displayedAreaTopLeftHandCorner.getLength() == 0)
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with displayedAreaTopLeftHandCorner absent or empty");
}
else if (displayedAreaTopLeftHandCorner.getVM() != 2)
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with displayedAreaTopLeftHandCorner VM != 2");
}
if (displayedAreaBottomRightHandCorner.getLength() == 0)
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with displayedAreaBottomRightHandCorner absent or empty");
}
else if (displayedAreaBottomRightHandCorner.getVM() != 2)
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with displayedAreaBottomRightHandCorner VM != 2");
}
if (presentationSizeMode.getLength() == 0)
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with presentationSizeMode absent or empty");
}
else if (presentationSizeMode.getVM() != 1)
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with presentationSizeMode VM != 1");
} else {
aString.clear();
presentationSizeMode.getOFString(aString,0);
if (aString=="TRUE SIZE")
{
if (presentationPixelSpacing.getVM() != 2)
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with mode 'TRUE SIZE' but presentationPixelSpacing VM != 2");
}
} else if (aString == "MAGNIFY")
{
if (presentationPixelMagnificationRatio.getVM() != 1)
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with mode 'MAGNIFY' but presentationPixelSpacing VM != 1");
}
} else if (aString != "SCALE TO FIT")
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with unknown presentation size mode: " << aString);
}
}
if ((presentationPixelSpacing.getLength() > 0)&&(presentationPixelSpacing.getVM() != 2))
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with presentationPixelSpacing VM != 2");
}
if ((presentationPixelAspectRatio.getLength() > 0)&&(presentationPixelAspectRatio.getVM() != 2))
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with presentationPixelAspectRatio VM != 2");
}
if ((presentationPixelMagnificationRatio.getLength() > 0)&&(presentationPixelMagnificationRatio.getVM() != 1))
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with presentationPixelMagnificationRatio VM != 1");
}
if ((presentationPixelSpacing.getLength() == 0)&&(presentationPixelAspectRatio.getVM() != 2))
{
result=EC_IllegalCall;
DCMPSTAT_WARN("presentation state contains a display area selection SQ item with both presentationPixelSpacing and presentationPixelAspectRatio missing/incorrect");
}
return result;
}
OFCondition DVPSDisplayedArea::write(DcmItem &dset)
{
OFCondition result = EC_Normal;
DcmElement *delem=NULL;
if ((presentationPixelSpacing.getLength()==0)&&(presentationPixelAspectRatio.getLength()==0))
presentationPixelAspectRatio.putString("1\\1");
ADD_TO_DATASET(DcmSignedLong, displayedAreaTopLeftHandCorner)
ADD_TO_DATASET(DcmSignedLong, displayedAreaBottomRightHandCorner)
ADD_TO_DATASET(DcmCodeString, presentationSizeMode)
if (presentationPixelSpacing.getLength() >0) { ADD_TO_DATASET(DcmDecimalString, presentationPixelSpacing) }
if (presentationPixelAspectRatio.getLength() >0) { ADD_TO_DATASET(DcmIntegerString, presentationPixelAspectRatio) }
if (presentationPixelMagnificationRatio.getLength() >0) { ADD_TO_DATASET(DcmFloatingPointSingle, presentationPixelMagnificationRatio) }
if ((result == EC_Normal)&&(referencedImageList.size() >0)) result = referencedImageList.write(dset);
return result;
}
OFBool DVPSDisplayedArea::isApplicable(const char *instanceUID, unsigned long frame)
{
return referencedImageList.isApplicable(instanceUID, frame);
}
OFBool DVPSDisplayedArea::matchesApplicability(const char *instanceUID, unsigned long frame, DVPSObjectApplicability applicability)
{
return referencedImageList.matchesApplicability(instanceUID, frame, applicability);
}
void DVPSDisplayedArea::removeImageReference(
DVPSReferencedSeries_PList& allReferences,
const char *instanceUID,
unsigned long frame,
unsigned long numberOfFrames,
DVPSObjectApplicability applicability)
{
referencedImageList.removeImageReference(allReferences, instanceUID, frame, numberOfFrames, applicability);
return;
}
DVPSPresentationSizeMode DVPSDisplayedArea::getPresentationSizeMode()
{
OFString aString;
presentationSizeMode.getOFString(aString,0);
if (aString=="TRUE SIZE") return DVPSD_trueSize;
else if (aString=="MAGNIFY") return DVPSD_magnify;
return DVPSD_scaleToFit;
}
double DVPSDisplayedArea::getPresentationPixelAspectRatio()
{
double result = 1.0; // default in case something goes wrong
if (presentationPixelSpacing.getVM() == 2)
{
Float64 flX=0.0;
Float64 flY=0.0;
presentationPixelSpacing.getFloat64(flY, 0);
presentationPixelSpacing.getFloat64(flX, 1);
if (flY != 0.0) result = flX/flY;
}
else if (presentationPixelAspectRatio.getVM() == 2)
{
Sint32 siX=0;
Sint32 siY=0;
presentationPixelAspectRatio.getSint32(siY, 0);
presentationPixelAspectRatio.getSint32(siX, 1);
if (siY != 0) result = ((double)siX) / ((double)siY);
}
return result;
}
void DVPSDisplayedArea::getDisplayedArea(Sint32& tlhcX, Sint32& tlhcY, Sint32& brhcX, Sint32& brhcY)
{
if (EC_Normal != displayedAreaTopLeftHandCorner.getSint32(tlhcX, 0)) tlhcX = 0;
if (EC_Normal != displayedAreaTopLeftHandCorner.getSint32(tlhcY, 1)) tlhcY = 0;
if (EC_Normal != displayedAreaBottomRightHandCorner.getSint32(brhcX, 0)) brhcX = 0;
if (EC_Normal != displayedAreaBottomRightHandCorner.getSint32(brhcY, 1)) brhcY = 0;
return;
}
OFCondition DVPSDisplayedArea::getPresentationPixelSpacing(double& x, double& y)
{
if (presentationPixelSpacing.getVM() == 2)
{
Float64 psX=0.0;
Float64 psY=0.0;
// presentationPixelSpacing uses the format row_spacing\\col_spacing
presentationPixelSpacing.getFloat64(psY, 0);
presentationPixelSpacing.getFloat64(psX, 1);
x = psX;
y = psY;
return EC_Normal;
}
return EC_IllegalCall;
}
OFCondition DVPSDisplayedArea::getPresentationPixelMagnificationRatio(double& magnification)
{
if (presentationPixelMagnificationRatio.getVM() == 1)
{
Float32 mag=0.0;
presentationPixelMagnificationRatio.getFloat32(mag, 0);
magnification = (double)mag;
return EC_Normal;
}
return EC_IllegalCall;
}
OFCondition DVPSDisplayedArea::addImageReference(
const char *sopclassUID,
const char *instanceUID,
unsigned long frame,
DVPSObjectApplicability applicability)
{
return referencedImageList.addImageReference(sopclassUID, instanceUID, frame, applicability);
}
OFBool DVPSDisplayedArea::canUseTrueSize()
{
if (presentationPixelSpacing.getVM() == 2) return OFTrue; else return OFFalse;
}
OFCondition DVPSDisplayedArea::setDisplayedAreaPixelSpacing(double spacingX, double spacingY)
{
char str[66];
OFStandard::ftoa(str, 32, spacingY, OFStandard::ftoa_format_f);
OFStandard::strlcat(str, "\\", 66);
OFStandard::ftoa(strchr(str, 0), 32, spacingX, OFStandard::ftoa_format_f);
return setDisplayedAreaPixelSpacing(str);
}
OFCondition DVPSDisplayedArea::setDisplayedAreaPixelSpacing(const char *spacing)
{
if (spacing==NULL) return EC_IllegalCall;
presentationPixelAspectRatio.clear();
OFCondition result = presentationPixelSpacing.putString(spacing);
if (EC_Normal == result)
{
Float64 fl=0.0;
presentationPixelSpacing.getFloat64(fl, 0);
if (fl == 0.0) result = EC_IllegalCall;
else if (fl < 0) presentationPixelSpacing.putFloat64(-fl, 0); // silently correct negative values
fl =0.0;
presentationPixelSpacing.getFloat64(fl, 1);
if (fl == 0.0) result = EC_IllegalCall;
else if (fl < 0) presentationPixelSpacing.putFloat64(-fl, 1); // silently correct negative values
}
if (EC_Normal != result) presentationPixelSpacing.clear();
return result;
}
OFCondition DVPSDisplayedArea::setDisplayedAreaPixelAspectRatio(double ratio)
{
char str[100];
OFStandard::snprintf(str, sizeof(str), "10000\\%ld", (long)(ratio*10000.0));
return setDisplayedAreaPixelAspectRatio(str);
}
OFCondition DVPSDisplayedArea::setDisplayedAreaPixelAspectRatio(const char *ratio)
{
if (ratio==NULL) return EC_IllegalCall;
presentationPixelSpacing.clear();
OFCondition result = presentationPixelAspectRatio.putString(ratio);
if (EC_Normal == result)
{
Sint32 si=0;
presentationPixelAspectRatio.getSint32(si, 0);
if (si == 0) result = EC_IllegalCall;
else if (si < 0) presentationPixelAspectRatio.putSint32(-si, 0); // silently correct negative values
si = 0;
presentationPixelAspectRatio.getSint32(si, 1);
if (si == 0) result = EC_IllegalCall;
else if (si < 0) presentationPixelAspectRatio.putSint32(-si, 1); // silently correct negative values
}
if (EC_Normal != result) presentationPixelAspectRatio.clear();
return result;
}
OFCondition DVPSDisplayedArea::setDisplayedArea(
DVPSPresentationSizeMode sizeMode,
Sint32 tlhcX,
Sint32 tlhcY,
Sint32 brhcX,
Sint32 brhcY,
double magnification)
{
OFCondition result = EC_Normal;
switch (sizeMode)
{
case DVPSD_scaleToFit:
result = presentationSizeMode.putString("SCALE TO FIT");
if (EC_Normal == result) presentationPixelMagnificationRatio.clear();
break;
case DVPSD_trueSize:
if (! canUseTrueSize()) return EC_IllegalCall;
result = presentationSizeMode.putString("TRUE SIZE");
if (EC_Normal == result) presentationPixelMagnificationRatio.clear();
break;
case DVPSD_magnify:
if (magnification == 0.0) return EC_IllegalCall;
result = presentationSizeMode.putString("MAGNIFY");
if (EC_Normal == result) presentationPixelMagnificationRatio.clear();
if (EC_Normal == result) result = presentationPixelMagnificationRatio.putFloat32((Float32)magnification,0);
break;
}
if (EC_Normal == result) result = displayedAreaTopLeftHandCorner.putSint32(tlhcX,0);
if (EC_Normal == result) result = displayedAreaTopLeftHandCorner.putSint32(tlhcY,1);
if (EC_Normal == result) result = displayedAreaBottomRightHandCorner.putSint32(brhcX,0);
if (EC_Normal == result) result = displayedAreaBottomRightHandCorner.putSint32(brhcY,1);
return result;
}
void DVPSDisplayedArea::switchHorizontalCorners()
{
Sint32 tlhcX = 0;
Sint32 brhcX = 0;
displayedAreaTopLeftHandCorner.getSint32(tlhcX, 0);
displayedAreaBottomRightHandCorner.getSint32(brhcX, 0);
displayedAreaTopLeftHandCorner.putSint32(brhcX,0);
displayedAreaBottomRightHandCorner.putSint32(tlhcX,0);
}
void DVPSDisplayedArea::switchVerticalCorners()
{
Sint32 tlhcY = 0;
Sint32 brhcY = 0;
displayedAreaTopLeftHandCorner.getSint32(tlhcY, 1);
displayedAreaBottomRightHandCorner.getSint32(brhcY, 1);
displayedAreaTopLeftHandCorner.putSint32(brhcY,1);
displayedAreaBottomRightHandCorner.putSint32(tlhcY,1);
}
void DVPSDisplayedArea::rotateAndFlipFromOrTo(DVPSRotationType rotation, OFBool isFlipped)
{
switch (rotation)
{
case DVPSR_0_deg:
if (isFlipped) switchHorizontalCorners();
break;
case DVPSR_90_deg:
if (!isFlipped) switchVerticalCorners();
break;
case DVPSR_180_deg:
if (isFlipped)
switchVerticalCorners();
else
{
switchHorizontalCorners();
switchVerticalCorners();
}
break;
case DVPSR_270_deg:
if (isFlipped)
{
switchHorizontalCorners();
switchVerticalCorners();
}
else switchHorizontalCorners();
break;
}
}
void DVPSDisplayedArea::rotateAndFlip(
DVPSRotationType rotationFrom,
OFBool isFlippedFrom,
DVPSRotationType rotationTo,
OFBool isFlippedTo)
{
// restore original coordinates (no rotation, no flipping)
rotateAndFlipFromOrTo(rotationFrom, isFlippedFrom);
// create new coordinates
rotateAndFlipFromOrTo(rotationTo, isFlippedTo);
}
|