Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是代码:
import dicom ds = dicom.read_file(FILE_PATH) print(ds)
错误:
LookupError: unknown encoding: ISO 2022 IR 100
使用 pydicom 查看数据时,出现上述错误。根据此处,我找到了 'ISO 2022 IR 100': 'latin_1' 。
但是,我不知道如何解决这个问题。你能帮我解决这个错误吗?
如评论中所述,罪魁祸首是 pydicom 的过时版本。升级到更新的版本解决了这个问题。