导入 DICOM 图像路径(使用 MacBook,google collab)但得到 [Errno 2] No such file or directory

Importing DICOM image path (using MacBook, google collab) but getting [Errno 2] No such file or directory

我无法读取包含 DICOM 图像的文件路径。我熟悉在 Windows 上检索文件路径并阅读它,但我目前使用的是 MacBook,它似乎有点不同。任何人都可以提供一些提示并指导我正确的解决方案吗?

import os
f = open (os.path.expanduser("/Users/lynova/Downloads/MRI_CV/SER00006/IMG00001.dcm"))
ds=dicom.read_file(f)

不要使用 os.path.expanduser 函数,除非您使用主文件夹的波浪号 Documentation

import os
f = open ("/Users/lynova/Downloads/MRI_CV/SER00006/IMG00001.dcm","rb")
ds=dicom.read_file(f)

如果 DICOM 文件不是二进制文件,请将 rb 更改为 r