We have a number of legacy DICOM files that we would like to view in slicer. The files load with drag and drop. The user selects volume and the OCT is displayed. The pixel dimensions for the x and y dimensions are filled in correctly in slicer. The thickness for the b-scans (z axis) is set to 1. The DICOM has the b-scan thickness in the header. I can get it with the following python code.
z_spacing = dcm.SharedFunctionalGroupsSequence[0].PixelMeasuresSequence[0].SliceThickness
Where is slicer looking for the OCT thickness? If I know where slicer is looking for it I can modify the DICOM so that they load in slicer with the b-scan thickness.
Thanks
Mark