/usr/include/ITK-4.9/DICOMAppHelper.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
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 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 | /*=========================================================================
Program: DICOMParser
Module: DICOMAppHelper.h
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2003 Matt Turek
All rights reserved.
See Copyright.txt 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.
=========================================================================*/
#ifndef __DICOM_APP_HELPER_H_
#define __DICOM_APP_HELPER_H_
#ifdef _MSC_VER
#pragma warning ( disable : 4514 )
#pragma warning ( push, 3 )
#endif
#include <vector>
#include <string.h>
#include <cstring>
#include "DICOMConfig.h"
#include "DICOMTypes.h"
#include "DICOMCallback.h"
namespace DICOMPARSER_NAMESPACE
{
class DICOMParser;
// Function object for sorting strings
struct ltstdstr
{
ltstdstr() {}
bool operator()(const dicom_stl::string s1, const dicom_stl::string s2) const
{
return s1 < s2;
}
};
// Helper structure for DICOM elements
struct DICOMTagInfo
{
doublebyte group;
doublebyte element;
DICOMParser::VRTypes datatype;
const char* description;
};
// Helper class use for ordering DICOM images based on different
// (group, element) tags.
class DICOM_EXPORT DICOMOrderingElements
{
public:
DICOMOrderingElements()
{
// Default values to something "valid"
SliceNumber = -1;
SliceLocation = 0.0f;
ImagePositionPatient[0] = 0.0f;
ImagePositionPatient[1] = 0.0f;
ImagePositionPatient[2] = 0.0f;
ImageOrientationPatient[0] = 1.0f;
ImageOrientationPatient[1] = 0.0f;
ImageOrientationPatient[2] = 0.0f;
ImageOrientationPatient[3] = 0.0f;
ImageOrientationPatient[4] = 1.0f;
ImageOrientationPatient[5] = 0.0f;
}
int SliceNumber;
float SliceLocation;
float ImagePositionPatient[3];
float ImageOrientationPatient[6];
};
class DICOMAppHelperImplementation;
/**
* \class DICOMAppHelper
* \brief Class to interface an application to a DICOMParser
*
* DICOMAppHelper assists an application in communicating with a
* DICOMParser. DICOMAppHelper registers a series of callbacks to the
* DICOMParser which allows it to cache the information from a DICOM
* file in a format that is appropriate for an application to
* use. Once a DICOM file is read, an application can query the
* DICOMAppHelper for the resolution, pixel size, and pixel data.
*
* If a DICOMParser scans more than one file, the DICOMAppHelper will
* group filesnames by SeriesUID. This allows an application to pass
* a series of DICOM files to the DICOMParser (which via the callback
* mechanism allows the DICOMAppHelper to cache information) and then
* query the DICOMAppHelper for the files that are from the same
* series. The application can request the filenames for a particular
* series to be sorted based on image number, slice location, or
* patient position. This allows the DICOMAppHelper to assist an
* application is collecting all the images from one series into a
* volume.
*/
class DICOM_EXPORT DICOMAppHelper
{
public:
/** Standard constructor */
DICOMAppHelper();
/** Standard destructor */
virtual ~DICOMAppHelper();
/** Callbacks that are registered with the DICOMParser. The
* DICOMParser will call one of these callbacks whenever it
* encounters a (group, element) that has an associated callback */
virtual void RescaleSlopeCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len);
virtual void ArrayCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len);
virtual void SliceNumberCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void SliceLocationCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void ImagePositionPatientCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void ImageOrientationPatientCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void SeriesUIDCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void SeriesDescriptionCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void InstanceUIDCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void TransferSyntaxCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void BitsAllocatedCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void ToggleSwapBytesCallback(DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char*,
quadbyte);
virtual void PixelSpacingCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len) ;
virtual void HeightCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len);
virtual void WidthCallback( DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len);
virtual void PixelRepresentationCallback(DICOMParser *parser,
doublebyte group,
doublebyte element,
DICOMParser::VRTypes type,
unsigned char* val,
quadbyte len);
virtual void PhotometricInterpretationCallback(DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte len);
virtual void PixelDataCallback(DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte len);
virtual void RescaleOffsetCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ROIContourSequenceCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ContourSequenceCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ContourImageSequenceCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ContourGeometricTypeCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void NumberOfContourPointsCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ContourDataCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ReferencedInstanceUIDCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void PatientNameCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void PatientIDCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void PatientSexCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void PatientAgeCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void PatientDOBCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void StudyIDCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void StudyDescriptionCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void BodyPartCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void NumberOfSeriesInStudyCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void NumberOfStudyRelatedSeriesCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void StudyDateCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ModalityCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ManufacturerCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void InstitutionCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ModelCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void ScanOptionsCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
virtual void DefaultCallback( DICOMParser *parser,
doublebyte,
doublebyte,
DICOMParser::VRTypes,
unsigned char* val,
quadbyte);
/** Register all the standard callbacks with the DICOM Parser. This
* associates a callback with each (group, element) tag pair in the
* header of the file whose data needs to be cached. */
virtual void RegisterCallbacks(DICOMParser* parser);
/** Register a callback for retrieving the pixel data from a DICOM
* file */
virtual void RegisterPixelDataCallback(DICOMParser* parser);
/** Output information associated with a DICOM series */
void OutputSeries();
/** The next set of methods are for accessing information which is
* cached when a DICOM file is processed. This allows access to
* information from the header as well as the pixel data. */
/** Get the pixel spacing of the last image processed by the
* DICOMParser */
float* GetPixelSpacing()
{
return this->PixelSpacing;
}
/** Get the image width of the last image processed by the
* DICOMParser */
int GetWidth()
{
return this->Width;
}
/** Get the image height of the last image processed by the
* DICOMParser */
int GetHeight()
{
return this->Height;
}
/** Get the dimensions (width, height) of the last image processed
* by the DICOMParser */
int* GetDimensions()
{
return this->Dimensions;
}
/** Get the (DICOM) x,y,z coordinates of the first pixel in the
* image (upper left hand corner) of the last image processed by the
* DICOMParser */
float *GetImagePositionPatient()
{
return this->ImagePositionPatient;
}
/** Get the number of bits allocated per pixel of the last image
* processed by the DICOMParser */
int GetBitsAllocated()
{
return this->BitsAllocated;
}
/** Get the pixel representation of the last image processed by the
* DICOMParser. A zero is a unsigned quantity. A one indicates a
* signed quantity. */
int GetPixelRepresentation()
{
return this->PixelRepresentation;
}
/** Get the number of components of the last image processed by the
* DICOMParser. */
unsigned int GetNumberOfComponents()
{
if (!this->PhotometricInterpretation)
{
return 1;
}
//
// DICOM standard says that spaces (0x20) are to
// be ignored for CS types. We don't handle this
// well yet.
//
dicom_stl::string str1(*this->PhotometricInterpretation);
dicom_stl::string rgb("RGB ");
if (str1 == rgb)
{
return 3;
}
else
{
return 1;
}
}
/** Get the transfer syntax UID for the last image processed by the
* DICOMParser. */
dicom_stl::string GetTransferSyntaxUID()
{
return *(this->TransferSyntaxUID);
}
/** Get a textual description of the transfer syntax of the last
* image processed by the DICOMParser. */
const char* TransferSyntaxUIDDescription(const char* uid);
/** Get the image data from the last image processed by the
* DICOMParser. The data is only valid if the PixelDataCallback was
* registered.
* \sa RegisterPixelDataCallback()
*/
void GetImageData(void* & data, DICOMParser::VRTypes& dataType, unsigned long& len);
/** Determine whether the image data was rescaled (by the
* RescaleSlope tag) to be floating point. */
bool RescaledImageDataIsFloat();
/** Determine whether the image data was rescaled (by the
* RescaleSlope tag) to be a signed data type. */
bool RescaledImageDataIsSigned();
/** Get the slice number of the last image processed by the
DICOMParser. */
int GetSliceNumber()
{
return this->SliceNumber;
}
/** Get the series UID for the current file. */
std::string GetSeriesUID() { return this->CurrentSeriesUID; }
/** Get the series description for the current file. */
std::string GetSeriesDescription() { return this->CurrentSeriesDescription; }
/** Get the patient name processed by the
DICOMParser. */
void GetPatientName(char* name)
{
strcpy(name, m_PatientName);
}
/** Get the patient ID processed by the
DICOMParser. */
void GetPatientID(char* id)
{
strcpy(id, m_PatientID);
}
/** Get the patient sex processed by the
DICOMParser. */
void GetPatientSex(char* sex)
{
strcpy(sex, m_PatientSex);
}
/** Get the patient age processed by the
DICOMParser. */
void GetPatientAge(char* age)
{
strcpy(age, m_PatientAge);
}
/** Get the patient date of birth processed by the
DICOMParser. */
void GetPatientDOB(char* dob)
{
strcpy(dob, m_PatientDOB);
}
/** Get the study ID processed by the
DICOMParser. */
void GetStudyID(char* id)
{
strcpy(id, m_StudyID);
}
/** Get the description of the study processed by the
DICOMParser. */
void GetStudyDescription(char* desc)
{
strcpy(desc, m_StudyDescription);
}
/** Get the body part processed by the
DICOMParser. */
void GetBodyPart(char* part)
{
strcpy(part, m_BodyPart);
}
/** Get the number of series in the study processed by the
DICOMParser. */
void GetNumberOfSeriesInStudy(char* number)
{
strcpy(number, m_NumberOfSeriesInStudy);
}
/** Get the number of study related series processed by the
DICOMParser. */
void GetNumberOfStudyRelatedSeries(char* number)
{
strcpy(number, m_NumberOfStudyRelatedSeries);
}
/** Get the study date processed by the
DICOMParser. */
void GetStudyDate(char* date)
{
strcpy(date, m_StudyDate);
}
/** Get the modality processed by the
DICOMParser. */
void GetModality(char* modality)
{
strcpy(modality, m_Modality);
}
/** Get the manufacturer processed by the
DICOMParser. */
void GetManufacturer(char* manu)
{
strcpy(manu, m_Manufacturer);
}
/** Get the institution processed by the
DICOMParser. */
void GetInstitution(char* ins)
{
strcpy(ins, m_Institution);
}
/** Get the model processed by the
DICOMParser. */
void GetModel(char* model)
{
strcpy(model, m_Model);
}
/** Get the scan options name processed by the
DICOMParser. */
void GetScanOptions(char* options)
{
strcpy(options, m_ScanOptions);
}
/** Clear the internal databases. This will reset the internal
* databases that are grouping filenames based on SeriesUID's and
* ordering filenames based on image locations. */
void Clear();
/** Get the series UIDs for the files processed since the last
* clearing of the cache. */
void GetSeriesUIDs(dicom_stl::vector<dicom_stl::string> &v);
/** Get the series Descriptions for the files processed since the last
* clearing of the cache. */
void GetSeriesDescriptions(dicom_stl::vector<dicom_stl::string> &v);
/** Get the body parts for the files processed since the last
* clearing of the cache. */
void GetBodyParts(dicom_stl::vector<dicom_stl::string> &v);
/** Get the scane options for the files processed since the last
* clearing of the cache. */
void GetScanOptions(dicom_stl::vector<dicom_stl::string> &v);
/** Get the filenames for a series ordered by slice number. */
void GetSliceNumberFilenamePairs(const dicom_stl::string &seriesUID,
dicom_stl::vector<dicom_stl::pair<int, dicom_stl::string> > &v,
bool ascending = true);
/** Get the filenames for a series order by slice number. Use the
first series by default. */
void GetSliceNumberFilenamePairs(dicom_stl::vector<dicom_stl::pair<int, dicom_stl::string> > &v,
bool ascending = true);
/* Get the filenames for a series ordered by slice location. */
void GetSliceLocationFilenamePairs(const dicom_stl::string &seriesUID,
dicom_stl::vector<dicom_stl::pair<float, dicom_stl::string> > &v,
bool ascending = true);
/* Get the filenames for a series ordered by slice location. Use the
* first series by default. */
void GetSliceLocationFilenamePairs(dicom_stl::vector<dicom_stl::pair<float, dicom_stl::string> > &v,
bool ascending = true);
/* Get the filenames for a series ordered by image position
patient. This is the most reliable way to order the images in a
series. */
void GetImagePositionPatientFilenamePairs(const dicom_stl::string &seriesUID,
dicom_stl::vector<dicom_stl::pair<float, dicom_stl::string> > &v,
bool ascending = true);
/* Get the filenames for a series ordered by image position
patient. This is the most reliable way to order the images in a
series. Use the first series by default. */
void GetImagePositionPatientFilenamePairs(dicom_stl::vector<dicom_stl::pair<float, dicom_stl::string> > &v,
bool ascending = true);
/* Get the contours for a series. A vector of contours is returned
where each contour is a vector of floats (x, y, z, x, y, z, x, y,
z...). */
void GetContours(const dicom_stl::string &seriesUID,
dicom_stl::vector<dicom_stl::vector<float> > &v);
/* Get the contours for a series. A vector of contours is returned
where each contour is a vector of floats (x, y, z, x, y, z, x, y,
z...). Use the first series by default. */
void GetContours(dicom_stl::vector<dicom_stl::vector<float> > &v);
/* Get the referenced instance UIDs for a series. A vector of
* strings in returned. */
void GetReferencedInstanceUIDs(const dicom_stl::string &seriesUID,
dicom_stl::vector<dicom_stl::string> &v);
/* Get the referenced instance UIDs for a series. A vector of
* strings in returned. Use the first series by default. */
void GetReferencedInstanceUIDs(dicom_stl::vector<dicom_stl::string> &v);
/** Get the filename for a specific instance UID */
dicom_stl::string GetFileName( const dicom_stl::string &instanceUID );
protected:
int FileCount;
int BitsAllocated;
bool ByteSwapData;
float PixelSpacing[3];
int Width;
int Height;
int SliceNumber;
int Dimensions[2];
float ImagePositionPatient[3];
short VolumeSliceSize;
short VolumeSliceCount;
long VolumeVoxelCount;
long VolumeSegmentCount;
char m_PatientName[512];
char m_PatientID[512];
char m_PatientDOB[512];
char m_StudyID[512];
char m_StudyDescription[512];
char m_BodyPart[512];
char m_NumberOfSeriesInStudy[512];
char m_NumberOfStudyRelatedSeries[512];
char m_PatientSex[512];
char m_PatientAge[512];
char m_StudyDate[512];
char m_Modality[512];
char m_Manufacturer[512];
char m_Institution[512];
char m_Model[512];
char m_ScanOptions[512];
typedef dicom_stl::map<dicom_stl::pair<doublebyte, doublebyte>, DICOMTagInfo> TagMapType;
// TagMapType TagMap;
dicom_stream::ofstream HeaderFile;
// 0 unsigned
// 1 2s complement (signed)
int PixelRepresentation;
dicom_stl::string* PhotometricInterpretation;
dicom_stl::string* TransferSyntaxUID;
dicom_stl::string CurrentSeriesUID;
dicom_stl::string CurrentSeriesDescription;
dicom_stl::string CurrentBodyPart;
dicom_stl::string CurrentScanOptions;
dicom_stl::string InstanceUID;
float RescaleOffset;
float RescaleSlope;
void* ImageData;
DICOMParser::VRTypes ImageDataType;
unsigned long ImageDataLengthInBytes;
DICOMMemberCallback<DICOMAppHelper>* SeriesUIDCB;
DICOMMemberCallback<DICOMAppHelper>* SeriesDescriptionCB;
DICOMMemberCallback<DICOMAppHelper>* InstanceUIDCB;
DICOMMemberCallback<DICOMAppHelper>* SliceNumberCB;
DICOMMemberCallback<DICOMAppHelper>* SliceLocationCB;
DICOMMemberCallback<DICOMAppHelper>* ImagePositionPatientCB;
DICOMMemberCallback<DICOMAppHelper>* ImageOrientationPatientCB;
DICOMMemberCallback<DICOMAppHelper>* TransferSyntaxCB;
DICOMMemberCallback<DICOMAppHelper>* ToggleSwapBytesCB;
DICOMMemberCallback<DICOMAppHelper>* BitsAllocatedCB;
DICOMMemberCallback<DICOMAppHelper>* PixelSpacingCB;
DICOMMemberCallback<DICOMAppHelper>* HeightCB;
DICOMMemberCallback<DICOMAppHelper>* WidthCB;
DICOMMemberCallback<DICOMAppHelper>* PixelRepresentationCB;
DICOMMemberCallback<DICOMAppHelper>* PhotometricInterpretationCB;
DICOMMemberCallback<DICOMAppHelper>* RescaleOffsetCB;
DICOMMemberCallback<DICOMAppHelper>* RescaleSlopeCB;
DICOMMemberCallback<DICOMAppHelper>* PixelDataCB;
DICOMMemberCallback<DICOMAppHelper>* ROIContourSequenceCB;
DICOMMemberCallback<DICOMAppHelper>* ContourSequenceCB;
DICOMMemberCallback<DICOMAppHelper>* ContourDataCB;
DICOMMemberCallback<DICOMAppHelper>* NumberOfContourPointsCB;
DICOMMemberCallback<DICOMAppHelper>* ContourGeometricTypeCB;
DICOMMemberCallback<DICOMAppHelper>* ContourImageSequenceCB;
DICOMMemberCallback<DICOMAppHelper>* ReferencedInstanceUIDCB;
DICOMMemberCallback<DICOMAppHelper>* DefaultCB;
DICOMMemberCallback<DICOMAppHelper>* PatientNameCB;
DICOMMemberCallback<DICOMAppHelper>* PatientIDCB;
DICOMMemberCallback<DICOMAppHelper>* PatientSexCB;
DICOMMemberCallback<DICOMAppHelper>* PatientAgeCB;
DICOMMemberCallback<DICOMAppHelper>* StudyDateCB;
DICOMMemberCallback<DICOMAppHelper>* ModalityCB;
DICOMMemberCallback<DICOMAppHelper>* ManufacturerCB;
DICOMMemberCallback<DICOMAppHelper>* InstitutionCB;
DICOMMemberCallback<DICOMAppHelper>* ModelCB;
DICOMMemberCallback<DICOMAppHelper>* ScanOptionsCB;
DICOMMemberCallback<DICOMAppHelper>* PatientDOBCB;
DICOMMemberCallback<DICOMAppHelper>* StudyIDCB;
DICOMMemberCallback<DICOMAppHelper>* StudyDescriptionCB;
DICOMMemberCallback<DICOMAppHelper>* BodyPartCB;
DICOMMemberCallback<DICOMAppHelper>* NumberOfSeriesInStudyCB;
DICOMMemberCallback<DICOMAppHelper>* NumberOfStudyRelatedSeriesCB;
//
// Implementation contains stl templated classes that
// can't be exported from a DLL in Windows. We hide
// them in the implementation to get rid of annoying
// compile warnings.
//
DICOMAppHelperImplementation* Implementation;
private:
DICOMAppHelper(const DICOMAppHelper&);
void operator=(const DICOMAppHelper&);
};
}
#ifdef _MSC_VER
#pragma warning ( pop )
#endif
#endif
|