/usr/include/dcmtk/dcmimgle/diovpln.h is in libdcmtk-dev 3.6.1~20150924-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 | /*
*
* Copyright (C) 1996-2011, 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: dcmimgle
*
* Author: Joerg Riesmeier
*
* Purpose: DicomOverlayPlane (Header)
*
*/
#ifndef DIOVPLN_H
#define DIOVPLN_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/ofstring.h"
#include "dcmtk/ofstd/ofcast.h"
#include "dcmtk/dcmimgle/diutils.h"
#define INCLUDE_CSTDDEF
#include "dcmtk/ofstd/ofstdinc.h"
/*------------------------*
* forward declarations *
*------------------------*/
class DcmOverlayData;
class DcmLongString;
class DiDocument;
/*---------------------*
* class declaration *
*---------------------*/
/** Class to handle a single overlay plane
*/
class DCMTK_DCMIMGLE_EXPORT DiOverlayPlane
{
public:
/** constructor
*
** @param docu pointer to dataset (encapsulated)
* @param group group number of the overlay plane
* @param alloc value for bits allocated of the surrounding image
* @param stored value for bits stored of the surrounding image
* @param high value for high bit of the surrounding image
*/
DiOverlayPlane(const DiDocument *docu,
const unsigned int group,
Uint16 alloc,
const Uint16 stored,
const Uint16 high);
/** constructor, additional
*
** @param group group number of the overlay plane
* @param left_pos x-coordinate of the plane origin
* @param top_pos y-coordinate of the plane origin
* @param columns width of the overlay plane
* @param rows height of the overlay plane
* @param data element containing the plane data
* @param label element containing the plane label
* @param description element containing the plane description
* @param mode overlay plane mode
*/
DiOverlayPlane(const unsigned int group,
const Sint16 left_pos,
const Sint16 top_pos,
const Uint16 columns,
const Uint16 rows,
const DcmOverlayData &data,
const DcmLongString &label,
const DcmLongString &description,
const EM_Overlay mode);
/** constructor, copy
*
** @param plane reference overlay plane to be copied
* @param bit position of the plane bit
* @param data pointer to buffer for plane data
* @param temp temporary buffer used to extract plane information
* @param width width of the array where the plane is stored
* @param height height of the array where the plane is stored
* @param columns width of the overlay plane
* @param rows height of the overlay plane
*/
DiOverlayPlane(DiOverlayPlane *plane,
const unsigned int bit,
Uint16 *data,
Uint16 *temp,
const Uint16 width,
const Uint16 height,
const Uint16 columns,
const Uint16 rows);
/** destructor
*/
~DiOverlayPlane();
/** get x-coordinate of overlay plane origin
*
** @param left_pos offset to be subtracted from the actual value (optional)
*
** @return x-coordinate of overlay plane origin
*/
inline Sint16 getLeft(const Sint32 left_pos = 0) const
{
return OFstatic_cast(Sint16, OFstatic_cast(Sint32, Left) - left_pos);
}
/** get y-coordinate of overlay plane origin
*
** @param top_pos offset to be subtracted from the actual value (optional)
*
** @return y-coordinate of overlay plane origin
*/
inline Sint16 getTop(const Sint32 top_pos = 0) const
{
return OFstatic_cast(Sint16, OFstatic_cast(Sint32, Top) - top_pos);
}
/** get width of overlay plane
*
** @return width of overlay plane
*/
inline Uint16 getWidth() const
{
return Width;
}
/** get height of overlay plane
*
** @return height of overlay plane
*/
inline Uint16 getHeight() const
{
return Height;
}
/** get right border of overlay plane origin
*
** @param left_pos offset to be subtracted from the actual value (optional).
*
** @return right border of overlay plane origin. Negative values are set to 0.
*/
inline Uint16 getRight(const Sint32 left_pos = 0) const
{
return (OFstatic_cast(Sint32, Left) + OFstatic_cast(Sint32, Width) - left_pos > 0) ?
OFstatic_cast(Uint16, OFstatic_cast(Sint32, Left) + OFstatic_cast(Sint32, Width) - left_pos) : 0;
}
/** get bottom border of overlay plane origin
*
** @param top_pos offset to be subtracted from the actual value (optional).
*
** @return bottom border of overlay plane origin. Negative values are set to 0.
*/
inline Uint16 getBottom(const Sint32 top_pos = 0) const
{
return (OFstatic_cast(Sint32, Top) + OFstatic_cast(Sint32, Height) - top_pos > 0) ?
OFstatic_cast(Uint16, OFstatic_cast(Sint32, Top) + OFstatic_cast(Sint32, Height) - top_pos) : 0;
}
/** check whether overlay plane is valid
*
** @return true if plane is valid, false otherwise
*/
inline int isValid() const
{
return Valid;
}
/** check whether overlay plane is visible
*
** @return true if plane is visible, false otherwise
*/
inline int isVisible() const
{
return Visible;
}
/** make overlay plane visible
*/
inline void show()
{
Visible = 1;
}
/** make overlay plane invisible
*/
inline void hide()
{
Visible = 0;
}
/** move overlay plane to a new place
*
** @param left_pos x-coordinate of the new plane origin (maybe negative)
* @param top_pos y-coordinate of the new plane origin (maybe negative)
*/
void place(const signed int left_pos,
const signed int top_pos);
/** set scaling factor in x- and y-direction
*
** @param xfactor scaling factor in x-direction
* @param yfactor scaling factor in y-direction
*/
void setScaling(const double xfactor,
const double yfactor);
/** set flipping
*
** @param horz flip horizontally if true
* @param vert flip vertically if true
* @param columns width of surrounding image (incl. origin offset)
* @param rows height of surrounding image (incl. origin offset)
*/
void setFlipping(const int horz,
const int vert,
const signed long columns,
const signed long rows);
/** set rotation
*
** @param degree angle by which the plane should be rotated
* @param left_pos x-coordinate of the origin for all overlay planes
* @param top_pos y-coordinate of the origin for all overlay planes
* @param columns width of surrounding image (already rotated)
* @param rows height of surrounding image (already rotated)
*/
void setRotation(const int degree,
const signed long left_pos,
const signed long top_pos,
const Uint16 columns,
const Uint16 rows);
/** make overlay plane visible and set parameters
*
** @param fore foreground color of the plane (in percent: 0.0-1.0)
* @param thresh threshold value for 'threshold replace' (0.0-1.0)
* @param mode new overlay plane mode (EMO_Default for stored mode)
*/
void show(const double fore,
const double thresh,
const EM_Overlay mode);
/** make overlay plane visible and set p-value.
* Only applicable for bitmap shutters.
*
** @param pvalue p-value to be used for the overlay plane (0..65535)
*
** @return status, true if successful, false otherwise
*/
int show(const Uint16 pvalue);
/** get number of frames
*
** @return number of frames
*/
inline unsigned long getNumberOfFrames() const
{
return NumberOfFrames;
}
/** get foreground color of the plane
*
** @return foreground color (in percent: 0.0-1.0)
*/
inline double getForeground() const
{
return Foreground;
}
/** get threshold value of the plane
*
** @return threshold value (in percent: 0.0-1.0)
*/
inline double getThreshold() const
{
return Threshold;
}
/** get p-value of the plane.
* Only valid for bitmap shutters.
*
** @return p-value (0..65535)
*/
inline Uint16 getPValue() const
{
return PValue;
}
/** get overlay plane mode
*
** @return overlay plane mode
*/
inline EM_Overlay getMode() const
{
return Mode;
}
/** check whether overlay plane is embedded in the pixel data
*
** @return true if plane is embedded, false otherwise
*/
inline int isEmbedded() const
{
return EmbeddedData;
}
/** get label of overlay plane
*
** @return label if successful, NULL otherwise
*/
const char *getLabel() const
{
return (Label.empty()) ? OFstatic_cast(const char *, NULL) : Label.c_str();
}
/** get description of overlay plane
*
** @return description if successful, NULL otherwise
*/
const char *getDescription() const
{
return (Description.empty()) ? OFstatic_cast(const char *, NULL) : Description.c_str();
}
/** get group number of overlay plane
*
** @return group number (0x6000-0x60ff)
*/
Uint16 getGroupNumber() const
{
return GroupNumber;
}
/** get overlay plane data as an array of 1/8/16 bit values.
* Overlay plane is clipped to the area specified by the four min/max coordinates.
* Memory isn't handled internally and must therefore be deleted from calling program.
*
** @param frame number of frame
* @param xmin x-coordinate of the top left hand corner
* @param ymin y-coordinate of the top left hand corner
* @param xmax x-coordinate of the bottom right hand corner
* @param ymax y-coordinate of the bottom right hand corner
* @param bits number of bits (stored) in the resulting array
* @param fore foreground color used for the plane (0x00-0xff)
* @param back transparent background color (0x00-0xff)
*
** @return pointer to pixel data if successful, NULL otherwise
*/
void *getData(const unsigned long frame,
const Uint16 xmin,
const Uint16 ymin,
const Uint16 xmax,
const Uint16 ymax,
const int bits,
const Uint16 fore,
const Uint16 back);
/** create overlay plane data in (6xxx,3000) format.
* (1 bit allocated and stored, foreground color is 1, background color is 0,
* data is 16 bit padded - even length)
* Memory isn't handled internally and must therefore be deleted from calling program.
*
** @param buffer stores pointer to overlay data (memory is allocated internally)
* @param width returns width of overlay plane (in pixels)
* @param height returns height of overlay plane (in pixels)
* @param frames returns number of frames (multiple overlay frames possible!)
*
** @return number of bytes allocated for the 'buffer' if successful, 0 otherwise
*/
unsigned long create6xxx3000Data(Uint8 *&buffer,
unsigned int &width,
unsigned int &height,
unsigned long &frames);
/** reset internal 'cursor' to the beginning of the specified frame
*
** @param frame number of current frame
*
** @return status, true if successful, false otherwise
*/
inline int reset(const unsigned long frame);
/** get value of the current overlay plane bit and move 'cursor' to the next position
*
** @return true if plane bit is set, false otherwise
*/
inline int getNextBit();
/** set internal 'cursor' to a specific position
*
** @param x new x-coordinate to start from
* @param y new y-coordinate to start from
*/
inline void setStart(const Uint16 x,
const Uint16 y);
protected:
/// number of frames
Uint32 NumberOfFrames;
/// number of starting frame
Uint16 ImageFrameOrigin;
/// first frame to be processed (from DicomImage constructor)
Uint32 FirstFrame;
/// y-coordinate of overlay plane's origin
Sint16 Top;
/// x-coordinate of overlay plane's origin
Sint16 Left;
/// visible height
Uint16 Height;
/// visible width
Uint16 Width;
/// number of (stored) rows
Uint16 Rows;
/// number of (stored) columns
Uint16 Columns;
/// number of allocated bits per pixel
Uint16 BitsAllocated;
/// position of overlay plane bit
Uint16 BitPosition;
/// "color" of overlay plane (in percent: '0.0' = dark, '1.0' = bright)
double Foreground;
/// threshold value used for "threshold replace"
double Threshold;
/// P-value used for bitmap shutters
Uint16 PValue;
/// current overlay mode
EM_Overlay Mode;
/// default (stored) overlay mode
EM_Overlay DefaultMode;
/// label of overlay plane
OFString Label;
/// textual description of overlay plane
OFString Description;
/// group number of overlay plane
Uint16 GroupNumber;
/// validity status
int Valid;
/// visibility status
int Visible;
private:
/// current bit position
unsigned long BitPos;
/// starting bit position of current frame
unsigned long StartBitPos;
/// x-coordinate of first pixel in surrounding memory buffer
unsigned int StartLeft;
/// y-coordinate of first pixel in surrounding memory buffer
unsigned int StartTop;
/// true, if overlay data in embedded in pixel data
int EmbeddedData;
/// pointer to current element of 'Data'
const Uint16 *Ptr;
/// pointer to starting element of current frame
const Uint16 *StartPtr;
/// pointer to overlay data (standalone) or pixel data (embedded)
const Uint16 *Data;
// --- declarations to avoid compiler warnings
DiOverlayPlane(const DiOverlayPlane &);
DiOverlayPlane &operator=(const DiOverlayPlane &);
};
/********************************************************************/
inline int DiOverlayPlane::reset(const unsigned long frame)
{
int result = 0;
if (Valid && (Data != NULL))
{
const Uint32 frameNumber = FirstFrame + frame;
DCMIMGLE_TRACE("reset overlay plane in group 0x" << STD_NAMESPACE hex << GroupNumber << " to start position");
DCMIMGLE_TRACE(" frameNumber: " << frameNumber << " (" << FirstFrame << "+" << frame
<< "), ImageFrameOrigin: " << ImageFrameOrigin << ", NumberOfFrames: " << NumberOfFrames);
if ((frameNumber >= ImageFrameOrigin) && (frameNumber < ImageFrameOrigin + NumberOfFrames))
{
const unsigned long bits = (OFstatic_cast(unsigned long, StartLeft) + OFstatic_cast(unsigned long, StartTop) *
OFstatic_cast(unsigned long, Columns) + (frameNumber - ImageFrameOrigin) * OFstatic_cast(unsigned long, Rows) *
OFstatic_cast(unsigned long, Columns)) * OFstatic_cast(unsigned long, BitsAllocated);
StartBitPos = BitPos = OFstatic_cast(unsigned long, BitPosition) + bits;
DCMIMGLE_TRACE(" StartBitPos: " << StartBitPos << ", BitPosition: " << BitPosition << ", bits: " << bits);
/* distinguish between embedded and separate overlay data */
if (BitsAllocated == 16)
StartPtr = Ptr = Data + (bits >> 4);
else
StartPtr = Data;
result = (getRight() > 0) && (getBottom() > 0);
} else
DCMIMGLE_TRACE(" -> overlay plane does not apply to this frame");
}
return result;
}
inline int DiOverlayPlane::getNextBit()
{
int result;
if (BitsAllocated == 16) // optimization
result = OFstatic_cast(int, *(Ptr++) & (1 << BitPosition));
else
{
Ptr = StartPtr + (BitPos >> 4); // div 16
result = OFstatic_cast(int, *Ptr & (1 << (BitPos & 0xf))); // mod 16
BitPos += BitsAllocated; // next bit
}
return result;
}
inline void DiOverlayPlane::setStart(const Uint16 x,
const Uint16 y)
{
if (BitsAllocated == 16)
Ptr = StartPtr + OFstatic_cast(unsigned long, y - Top) * OFstatic_cast(unsigned long, Columns) +
OFstatic_cast(unsigned long, x - Left);
else
BitPos = StartBitPos + (OFstatic_cast(unsigned long, y - Top) * OFstatic_cast(unsigned long, Columns) +
OFstatic_cast(unsigned long, x - Left)) * OFstatic_cast(unsigned long, BitsAllocated);
}
#endif
|