# doc-cache created by Octave 12.0.0
# name: cache
# type: cell
# rows: 3
# columns: 2
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 9
decodeUID


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 588
 -- UIDINFO = images.dicom.decodeUID(UID)
     Look up information about a uid string

     Inputs
     ......

     UID - dicom uid string.

     Outputs
     .......

     UIDINFO - a structure with fields of Value, Name and Type.

     Additional fields may be present in the case of a Transfer Syntax type uid.

     Examples
     ........

          > info = images.dicom.decodeUID("1.2.840.10008.1.1");
          info =
           scalar structure containing the fields:
             Value = 1.2.840.10008.1.1
             Name = Verification SOP Class
             Type = SOP Class


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 38
Look up information about a uid string



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 13
parseDICOMDIR


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 607
 -- 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);


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 61
Parse a DICOMDIR file and return the information as a struct.





