读取 DICOM 文件格式
我使用 Evil DICOM 库来读取 DICOM 文件。它正确显示原始 DICOM 文件,但不显示其他格式。请建议我解决方案或建议我任何其他可以正确读取所有格式的 C# 库。
I have used Evil DICOM library to read a DICOM file.It is displaying the Raw DICOM file correctly but it is not displaying the other formats.Plz suggest me solution or suggest me any other C# library which reads all the formats correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在谈论带有压缩图像的 DICOM 文件。您可以访问像素数据元素中的片段并在 Evil Dicom 中自行解压缩:
但显然这比你可能想要。我将尝试让 CompressionHelper 类在接下来的几个版本中运行。许多压缩格式都是专有的,并且很难找到解压缩代码。
我相信 Grassroots DICOM 可能就是您正在寻找的。不像 Evil Dicom 那么简单,但它支持您想要的格式。
I assume you are talking about DICOM files with compressed images. You can access the fragments in the pixel data element and uncompress them yourself in Evil Dicom:
but obviously this is more complicated than you probably want. I will try to get the CompressionHelper class running within the next few versions. Many compression formats are proprietary and code for decompression is hard to find.
I believe Grassroots DICOM may be what you are looking for. Not as easy as Evil Dicom, but it supports the formats you want.