简体   繁体   English

如何使用dcm4che 3 c-move命令从pacs服务器获取dicom文件到本地文件系统

[英]How to get dicom files from pacs server to local filesystem with dcm4che 3 c-move command

When I use dcm4che3 and dcm4chee2, how to get image data files from one pacs server to my local directory with c-move command? 当我使用dcm4che3和dcm4chee2时,如何使用c-move命令将图像数据文件从一个pacs服务器获取到我的本地目录?

I use movescu bat file, and when I move from ge pacs to my dcm4chee pacs server,The studyInstanceUID has been changed, and I can't mapping this changed studyuid to the origin ge studyuid. 我使用的是movecu bat文件,当我从ge pacs移动到我的dcm4chee pacs服务器时,studyInstanceUID已被更改,我无法将此更改的studyuid映射到origin ge studyuid。 so I want to get dicom file to my local filesystem directly, Java code will be best. 所以我想直接将dicom文件发送到我的本地文件系统,Java代码将是最好的。

It seems like ge not support c-get command? 好像ge不支持c-get命令?

Get the dcm4che tk. 获取dcm4che tk。 In there you will find the binary dcmqr. 在那里你会发现二进制dcmqr。 Here is an example of how to move files from dcm4chee (or any PACS) to your local filesystem. 以下是如何将文件从dcm4chee(或任何PACS)移动到本地文件系统的示例。

dcmqr -L LISTENER:11113 PACSAE@PACSIP:PACSPORT -cmove LISTENER -qModalitiesInStudy=CT-cstore CT -cstoredest . dcmqr -L LISTENER:11113 PACSAE @ PACSIP:PACSPORT -cmove LISTENER -qModalitiesInStudy = CT-cstore CT -cstoredest。

-L is the listener ae title. -L是听众的头衔。 You will need to specify this in probably 99% of the cases. 您可能需要在99%的情况下指定此项。

-cmove is the command for cmove and again the listener AE. -cmove是cmove的命令,也是监听器AE的命令。

-qModalitiesInStudy is just one example. -qModalitiesInStudy只是一个例子。 Lots of things you can query for but you will need to know the modality for the -cstore option. 您可以查询很多东西,但是您需要知道-cstore选项的模态。

-cstoredest is where on your local file system you want to store the files. -cstoredest是您要在本地文件系统中存储文件的位置。

We can use dcmqr from dcm4chee2, but in dcm4che3 there is no such command "dcmqr". 我们可以使用dcm4chee2中的dcmqr,但是在dcm4che3中没有这样的命令“dcmqr”。 How I can do this by dcm4che3 ? 我怎么能用dcm4che3做到这一点?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM