读取 DICOM 文件格式

发布于 2024-11-30 18:01:13 字数 95 浏览 2 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掀纱窥君容 2024-12-07 18:01:13

我假设您正在谈论带有压缩图像的 DICOM 文件。您可以访问像素数据元素中的片段并在 Evil Dicom 中自行解压缩:

DicomFile df = new DicomFile("compressed.dcm");
Fragment[] frags = df.PixelData.Fragments;

但显然这比你可能想要。我将尝试让 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:

DicomFile df = new DicomFile("compressed.dcm");
Fragment[] frags = df.PixelData.Fragments;

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文