148
|
1 .. _ginkgo-cadx:
|
|
2
|
|
3 Ginkgo CADx
|
|
4 ===========
|
|
5
|
|
6 This section explains how to connect the `Ginkgo CADx viewer
|
|
7 <http://ginkgo-cadx.com/en/>`__ to an Orthanc server, both running on
|
|
8 the local computer. First, start Orthanc without specifying a
|
|
9 configuration file (i.e. using its default configuration). Then, open
|
|
10 the settings pannel of Ginkgo CADx:
|
|
11
|
|
12 .. image:: ../images/GinkgoCADx1.png
|
|
13 :align: center
|
|
14 :width: 500px
|
|
15
|
|
16 Write down the AET and the DICOM port of Ginkgo CADx (in this case,
|
|
17 respectively ``GINKGO_001`` and ``11112``). Then, create a new DICOM
|
|
18 node corresponding to Orthanc by clicking on the "*New...*" button,
|
|
19 which raises the following dialog box:
|
|
20
|
|
21 .. image:: ../images/GinkgoCADx2.png
|
|
22 :align: center
|
|
23 :width: 400px
|
|
24
|
|
25 .. highlight:: json
|
|
26
|
|
27 Complete the highlighted fields with the default parameters of
|
|
28 Orthanc, as shown in the screenshot. Do not forget to click on the
|
|
29 "*Test connection*" button to make sure the :ref:`C-Echo <dicom-echo>`
|
|
30 succeeds. Stop Orthanc, create a new :ref:`configuration file
|
|
31 <configuration>`, and declare Gingko CADx in the ``DicomModalities``
|
|
32 section, given the parameters you wrote down above::
|
|
33
|
|
34 // The list of the known DICOM modalities
|
|
35 "DicomModalities" : {
|
|
36 "ginkgo" : [ "GINKGO_001", "localhost", 11112 ]
|
|
37 },
|
|
38
|
|
39 Restart Orthanc using this newly created configuration file, and
|
|
40 you will be able to do query/retrieve from Gingko CADx through the
|
|
41 "*PACS Q/R*" menu.
|