如何使用 c# 中的clearcanvas 库从给定的 dicom 文件获取图像

发布于 2024-08-31 00:52:50 字数 35 浏览 3 评论 0原文

你能帮我从 dicom 文件中提取图像(二进制数据)吗?

Can you please help me in extracting image(binary data) from a dicom file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

笑着哭最痛 2024-09-07 00:52:50

这个问题并不完全清楚。如果您想要位图用于显示目的,那么这基本上是

如果您只是尝试将像素数据提取到字节数组中,那么您可以使用如下代码:


DicomFile theFile = new DicomFile("c:\tmp.dcm");
theFile.Load();
byte[] thePixels = theFile.DataSet[DicomTags.PixelData].Values;

The question is not completely clear. If you want a bitmap for display purposes, then this is basically a duplicate of this question. Please see the accepted answer.

If you are just trying to extract the pixel data into a byte array, then you can use code like this:


DicomFile theFile = new DicomFile("c:\tmp.dcm");
theFile.Load();
byte[] thePixels = theFile.DataSet[DicomTags.PixelData].Values;

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