0

我有一个包含一些 DICOM 研究的 ClearCanvas 存档服务器,我想根据一些标签过滤掉一些研究,

我尝试在dcm4che3中使用findscu按制造商名称过滤掉研究,这是我试图获取制造商名称为 Philips 的研究的查询

findscu.bat -c CCARCHIVE@192.1.1.1:105 -m "00080070=Philps*"

它确实返回了一些结果,但制造商标签为空,尽管所有研究都有制造商标签信息。我用 -L 参数尝试了不同的级别,但没有运气

我错过了什么吗?

4

1 回答 1

0

Unfortunately, I don't think manufacturer is a required query attribute (see part 4, section C.6 of the DICOM standard). That said, ClearCanvas may support it as a series level attribute (check the conformance statement). If so, you'll have to make a series level query. Add

-L SERIES

to your query. Lots more results, but may get you what you need.

于 2014-04-16T21:16:11.433 回答