0
|
1 .. _query-retrieve:
|
|
2
|
|
3 Configuring DICOM Query/Retrieve
|
|
4 ================================
|
|
5
|
|
6 Starting with release 0.7.0, Orthanc supports DICOM Query/Retrieve
|
|
7 (i.e. Orthanc can act as C-Find SCP and C-Move SCP). To configure this
|
|
8 feature, follow these instructions:
|
|
9
|
|
10 * Get the AET (Application Entity Title), the IP address and the port
|
|
11 number of your DICOM client.
|
|
12 * Add an entry in the ``DicomModalities`` section of your Orthanc
|
|
13 :ref:`configuration file <configuration>` to reflect these settings.
|
|
14 * Restart Orthanc with the updated configuration file.
|
|
15 * Symmetrically, in your DICOM client, configure an additional DICOM
|
|
16 node corresponding to your Orthanc AET (see the ``DicomAet``
|
|
17 parameter of your Orthanc configuration, by default, ORTHANC), IP
|
|
18 address et port number (cf. ``DicomPort``, by default 4242).
|
|
19
|
|
20 If you encounter configuration problem with query/retrieve, please be
|
|
21 sure to read the :ref:`dicom-move` section.
|
|
22
|
|
23
|
|
24 .. _ginkgo-cadx:
|
|
25
|
|
26 Illustration: Ginkgo CADx
|
|
27 -------------------------
|
|
28
|
|
29 This section explains how to connect the `Ginkgo CADx viewer
|
|
30 <http://ginkgo-cadx.com/en/>`__ to an Orthanc server, both running on
|
|
31 the local computer. First, start Orthanc without specifying a
|
|
32 configuration file (i.e. using its default configuration). Then, open
|
|
33 the settings pannel of Ginkgo CADx:
|
|
34
|
|
35 .. image:: ../images/GinkgoCADx1.png
|
|
36 :align: center
|
|
37 :width: 500px
|
|
38
|
|
39 Write down the AET and the DICOM port of Ginkgo CADx (in this case,
|
|
40 respectively ``GINKGO_001`` and ``11112``). Then, create a new DICOM
|
|
41 node corresponding to Orthanc by clicking on the "*New...*" button,
|
|
42 which raises the following dialog box:
|
|
43
|
|
44 .. image:: ../images/GinkgoCADx2.png
|
|
45 :align: center
|
|
46 :width: 400px
|
|
47
|
|
48 .. highlight:: json
|
|
49
|
|
50 Complete the highlighted fields with the default parameters of
|
|
51 Orthanc, as shown in the screenshot. Do not forget to click on the
|
|
52 "*Test connection*" button to make sure the :ref:`C-Echo <dicom-echo>`
|
|
53 succeeds. Stop Orthanc, create a new :ref:`configuration file
|
|
54 <configuration>`, and declare Gingko CADx in the ``DicomModalities``
|
|
55 section, given the parameters you wrote down above::
|
|
56
|
|
57 // The list of the known DICOM modalities
|
|
58 "DicomModalities" : {
|
|
59 "ginkgo" : [ "GINKGO_001", "localhost", 11112 ]
|
|
60 },
|
|
61
|
|
62 Restart Orthanc using this newly created configuration file, and
|
|
63 you will be able to do query/retrieve from Gingko CADx through the
|
|
64 "*PACS Q/R*" menu.
|