Here is an example: using findscu to query an image from a query/retrieve SCP using the patient root information model:
Code: Select all
findscu -v -P -k 0008,0052="IMAGE" -k 0010,0020="300019" -k 0020,000D="1.2.3.1" -k 0020,000E="1.2.3.2" -k 0008,0018="1.2.3.3" localhost 104
- -v runs the application in verbose mode
- -P specifies to use the patient root information model
- -k 0008,0052="IMAGE" tells the application that you are querying on image level (i.e. for an image)
- -k 0010,0020="300019" is the patient ID of the patient in question (unique key on patient level)
- -k 0020,000D="1.2.3.1" is the study instance uid of the study in question (unique key on study level)
- -k 0020,000E="1.2.3.2" is the series instance uid of the series in question (unique key on series level)
- -k 0008,0018="1.2.3.3" is the sop instance uid of the image in question (unique key on image level)
- localhost is the machine the query/retrieve SCP is running on
- 104 is the port the query/retrieve SCP is listening to.