Dear reader,
I am trying to read private GE ultrasound tags in a DICOM sequence. I have tried the following approach:
Dim tag = Dicom.DicomTag.Parse("7fe1,1008")
Dim dsSettings As DicomSequence = dcmFile.Dataset.[Get](Of DicomSequence)(tag)
The tag contains a sequence of 89 items that I would like to iterate through.
This returns "{"Tag: (7fe1,1008) not found in dataset"}". I used this method to retrieve the ImageRegion tags and there it works just fine. I am probably doing something wrong..
Thanks so much :)