comparison Core/DicomFormat/DicomTag.cpp @ 77:b8dfde8d64e8

new dicom tags
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 20 Sep 2012 13:41:18 +0200
parents c996319e90bc
children 6212bf978584
comparison
equal deleted inserted replaced
76:e2d68529605f 77:b8dfde8d64e8
59 return std::string(b); 59 return std::string(b);
60 } 60 }
61 61
62 62
63 const DicomTag DicomTag::ACCESSION_NUMBER = DicomTag(0x0008, 0x0050); 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);
64 const DicomTag DicomTag::IMAGE_INDEX = DicomTag(0x0054, 0x1330); 71 const DicomTag DicomTag::IMAGE_INDEX = DicomTag(0x0054, 0x1330);
65 const DicomTag DicomTag::INSTANCE_UID = DicomTag(0x0008, 0x0018); 72
66 const DicomTag DicomTag::NUMBER_OF_SLICES = DicomTag(0x0054, 0x0081); 73 const DicomTag DicomTag::NUMBER_OF_SLICES = DicomTag(0x0054, 0x0081);
67 const DicomTag DicomTag::PATIENT_ID = DicomTag(0x0010, 0x0020); 74 const DicomTag DicomTag::NUMBER_OF_FRAMES = DicomTag(0x0028, 0x0008);
68 const DicomTag DicomTag::SERIES_UID = DicomTag(0x0020, 0x000e); 75 const DicomTag DicomTag::CARDIAC_NUMBER_OF_IMAGES = DicomTag(0x0018, 0x1090);
69 const DicomTag DicomTag::STUDY_UID = DicomTag(0x0020, 0x000d); 76 const DicomTag DicomTag::IMAGES_IN_ACQUISITION = DicomTag(0x0020, 0x1002);
70 const DicomTag DicomTag::PIXEL_DATA = DicomTag(0x7fe0, 0x0010); 77
71 } 78 }