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.
我想从顶部裁剪 DICOM 图像。我在处理 DICOM 方面非常陌生。谁能建议我如何在 C#/.NET 中做到这一点?
作为旁注,还建议我一个可用的开源库,或者如果可能的话,我可以这样做。目标是裁剪 DICOM 系列(逐个图像),然后将其保存为新系列。
有很多方法可以做到这一点。也许最简单的方法是安装 CTN。在典型的 debian 系统上:
$ sudo apt-get install ctn $ dcm_resize -c 256 -r 256 -t -v in.dcm out.dcm
我相信 imagemagickconvert也支持 DICOM 文件。
convert
如果您真的想直接从 C# 执行此操作,可以使用 GDCM/C# 绑定,并查看以下两个示例以了解如何操作 DICOM 图像缓冲区: