Is it possible to access a DICOM tag that references a sequence type using io.dicom.decode_dicom_data()?
Using pydicom I can acess take 0x0008,0x1155 like this:
ds = pydicom.dcmread(file)
reference = ds[0x0008,0x1115][0][0x0008,0x1140][0][0x0008,0x1155].value
How would I do this with the io.dicom.decode_dicom_data() function?