comparison Sphinx/source/integrations/integrate-osirix-using-dicom.rst @ 144:5bf9510859b0 integrations-osirix-horos

integration with Osirix and dicom
author Sebastien Abras <sa@osimis.io>
date Tue, 29 May 2018 10:40:13 +0200
parents
children fa19c0fa1367
comparison
equal deleted inserted replaced
143:6c2e67e8e731 144:5bf9510859b0
1 .. _integrate-osirix-using-dicom:
2
3 Integrate Osirix using dicom
4 ===========================
5
6 Configuration of Osirix
7 -----------------------
8
9 * In Preferences->Listener, activate and configure AETitle and Port (eg : Osirix 11112).
10 * In Preferences->Locations, add a DICOM Nodes :
11 * with AETitle of orthanc (default is ORTHANC)
12 * with a name (eg MYORTHANC)
13 * with Retrieve method C-GET
14 * with Send Transfers syntax : Explicit Little Endian
15
16 Configuration of Orthanc
17 ------------------------
18
19 Add Modality through Environmental variable in docker::
20
21 DICOM_MODALITIES=
22 {
23 "Osirix": ["Osirix", "192.168.253.53", 11112]
24 }
25
26 If using Orthanc in a docker container, map the Orthanc DICOM Port. Eg in docker-compose file::
27
28 ports:
29 - "4242:4242"