你能建议一种简单的方法来识别一组DICOM文件之间的侦察吗?感谢。
答案 0 :(得分:1)
请检查图像类型元素的第3个值(0008,0008)。此可选值3用于Image IOD特定专业化。例如,CT Image使用字符串“LOCALIZER”作为侦察图像。
答案 1 :(得分:0)
要详细说明 LEADTOOLS Support 的非常有用的答案,可以使用 pydicom
库在 Python 中轻松执行此操作:
def is_scout(fn: str) -> bool:
""" Identify scouts/scanograms """
filedata = pydicom.dcmread(fn, stop_before_pixels=True, force=True)
# (0008,0008) = Image Type
return 'LOCALIZER' in filedata.get((0x8, 0x8), list())