: info = images.dicom.parseDICOMDIR(filename)

Parse a DICOMDIR file and return the information as a struct.

Inputs

filename - filename to open.

Outputs

info - A struct containing the directory information from a DICOMDIR file

Th info structure will be an array of Patients, with an array of Studies with an array of Series with an array of Images.

Each element will contain a Payload field.

Examples

filename = file_in_loadpath("imdata/DICOMDIR");

info = images.dicom.parseDICOMDIR(filename);

Package: dicom