在网页中使用 dcmtk 的 DICOM
我有一个运行 Conquest 的 PACS 服务器。然后,我需要选择研究和系列的列表。我将 dcmtk 用于独立应用程序。现在,基本操作如:选择一项研究、选择一个系列、获取患者信息和获取数据应该在网页上进行。
我更喜欢使用某种“轻量级”服务器。有想法这样做吗?使用 DICOM 协议通过 PACS 服务器创建简单查询?
您能给我推荐任何论坛、页面、想法或库吗?
I have a PACS server running Conquest. Then, I need to choose the list of studies and series. I was using dcmtk for standalone applications. Now, basic operations like: select a study, select a serie, obtain the patient's information and obtain the data should work on a webpage.
I prefer to use some kind of "lightweight" server. Any idea to do that? to create simple queries over a PACS server using the DICOM protocol?
Could you suggest me any forums, pages, ideas or libraries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许现在回答你的问题有点晚了,但无论如何,我认为这对你来说可能很有趣。
我遇到了类似的问题,因为我想创建一个能够连接到任何 PACS 的 html5 dicom 查看器。因此,我需要对 Pac 执行查询。我最终开发了诸如网关或网络服务之类的东西来获取有关患者、研究和存储在 Pac 中的一系列 Dicom 对象的信息。
现在,该工具已在github上公开发布。
看一下,因为我认为它可能是您正在寻找的:
dcmgw:Dicom Gateway
medview:html5 Dicom 查看器
Maybe it is a bit late to answer your question, but, anyway, I consider this could be interesting to you.
I had a similar problem since I wanted to create a html5 dicom viewer able to connect to any PACS. So, I needed to perform queries to the Pacs. I ended up developing something like a gateway or webservice to get information about patients, studies and series of Dicom objects stored in the Pacs.
Now, this tool has been made publicly available on github.
Have a look at the, since I consider that it can be what you are looking for:
dcmgw: Dicom Gateway
medview: html5 Dicom viewer
这并不能真正回答您的确切问题,但类似的东西已经存在:查看 Ovyiam
This doesn't really answer your exact question, but something like this already exists: check out Ovyiam
我认为 Orthanc 特别适合您的情况。 Orthanc 是一个轻量级开源 DICOM 服务器,附带 REST API 来访问其内容。
I think that Orthanc would be particularly well suited to your case. Orthanc is a lightweight, open-source DICOM server that comes with a REST API to access its content.