comparison Core/DicomFormat/DicomTag.h @ 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
56 56
57 std::string Format() const; 57 std::string Format() const;
58 58
59 friend std::ostream& operator<< (std::ostream& o, const DicomTag& tag); 59 friend std::ostream& operator<< (std::ostream& o, const DicomTag& tag);
60 60
61 // Alias for the most useful tags 61 // Aliases for the most useful tags
62 static const DicomTag ACCESSION_NUMBER; 62 static const DicomTag ACCESSION_NUMBER;
63 static const DicomTag SOP_INSTANCE_UID;
64 static const DicomTag PATIENT_ID;
65 static const DicomTag SERIES_INSTANCE_UID;
66 static const DicomTag STUDY_INSTANCE_UID;
67 static const DicomTag PIXEL_DATA;
68
69 static const DicomTag INSTANCE_NUMBER;
63 static const DicomTag IMAGE_INDEX; 70 static const DicomTag IMAGE_INDEX;
64 static const DicomTag INSTANCE_UID; 71
65 static const DicomTag NUMBER_OF_SLICES; 72 static const DicomTag NUMBER_OF_SLICES;
66 static const DicomTag PATIENT_ID; 73 static const DicomTag NUMBER_OF_FRAMES;
67 static const DicomTag SERIES_UID; 74 static const DicomTag CARDIAC_NUMBER_OF_IMAGES;
68 static const DicomTag STUDY_UID; 75 static const DicomTag IMAGES_IN_ACQUISITION;
69 static const DicomTag PIXEL_DATA;
70 }; 76 };
71 } 77 }