<< Back to the main page

Constructing DICOM dataset

DICOM dataset can be easily constructed by inserting tags into an empty dataset or populating an existing one:

  1. DcmDataset dataset;
  2.  
  3. dataset.setTagValue("MediaStorageSOPClassUID", "1.2.840.10008.5.1.4.1.1.1");
  4. dataset.setTagValue("MediaStorageSOPInstanceUID", "1.2.3.4.5.6.7");
  5. dataset.setTagValue("StudyInstanceUID", "1.2.3.4.5.6.7.1");
  6. dataset.setTagValue("SeriesInstanceUID", "1.2.3.4.5.6.7.1.1");
  7. dataset.setTagValue("SOPClassUID", "1.2.840.10008.5.1.4.1.1.1");
  8. dataset.setTagValue("SOPInstanceUID", "1.2.3.4.5.6.7");
  9. dataset.setTagValue("PatientId", "BJ750315");
  10. dataset.setTagValue("PatientName", "Brown^John");
  11. dataset.setTagValue("PatientSex", "M");
  12. dataset.setTagValue("PatientBirthDate", QDate(1975, 3, 15));

Another way to populate a dataset is by using modules. Modules are sets of tags grouped logically in a single object:

  1. DcmDataset dataset;
  2.  
  3. DcmModulePatient patient;
  4.  
  5. patient.setPatientId("BJ750315");
  6. patient.setPatientName("Brown^John");
  7.  
  8. dataset.attachModule(patient);
Modules contain mandatory tags well as optional tags. One may call isValid() method of a module object to check that all mandatory tags has been defined.


©2012 by Arthur Benilov

Project Web Hosted by
SourceForge.net