comparison Core/DicomFormat/DicomTag.cpp @ 80:6212bf978584

status of series
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 20 Sep 2012 15:18:12 +0200
parents b8dfde8d64e8
children fe180eae201d
comparison
equal deleted inserted replaced
79:297bad4e1019 80:6212bf978584
56 { 56 {
57 char b[16]; 57 char b[16];
58 sprintf(b, "%04x,%04x", group_, element_); 58 sprintf(b, "%04x,%04x", group_, element_);
59 return std::string(b); 59 return std::string(b);
60 } 60 }
61
62
63 const DicomTag DicomTag::ACCESSION_NUMBER = DicomTag(0x0008, 0x0050);
64 const DicomTag DicomTag::SOP_INSTANCE_UID = DicomTag(0x0008, 0x0018);
65 const DicomTag DicomTag::PATIENT_ID = DicomTag(0x0010, 0x0020);
66 const DicomTag DicomTag::SERIES_INSTANCE_UID = DicomTag(0x0020, 0x000e);
67 const DicomTag DicomTag::STUDY_INSTANCE_UID = DicomTag(0x0020, 0x000d);
68 const DicomTag DicomTag::PIXEL_DATA = DicomTag(0x7fe0, 0x0010);
69
70 const DicomTag DicomTag::INSTANCE_NUMBER = DicomTag(0x0020, 0x0013);
71 const DicomTag DicomTag::IMAGE_INDEX = DicomTag(0x0054, 0x1330);
72
73 const DicomTag DicomTag::NUMBER_OF_SLICES = DicomTag(0x0054, 0x0081);
74 const DicomTag DicomTag::NUMBER_OF_FRAMES = DicomTag(0x0028, 0x0008);
75 const DicomTag DicomTag::CARDIAC_NUMBER_OF_IMAGES = DicomTag(0x0018, 0x1090);
76 const DicomTag DicomTag::IMAGES_IN_ACQUISITION = DicomTag(0x0020, 0x1002);
77
78 } 61 }