Mercurial > hg > orthanc-book
changeset 142:5846dab98de2 integrations-osirix-horos
integration with Osirix and dicom
author | Sebastien Abras <sa@osimis.io> |
---|---|
date | Tue, 29 May 2018 10:32:52 +0200 |
parents | 2f871e5728fe |
children | 6c2e67e8e731 |
files | Sphinx/source/index.rst Sphinx/source/integrations.rst Sphinx/source/integrations/integrate-osirix-with-dicom.rst |
diffstat | 3 files changed, 46 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/Sphinx/source/index.rst Tue May 29 08:44:41 2018 +0200 +++ b/Sphinx/source/index.rst Tue May 29 10:32:52 2018 +0200 @@ -19,5 +19,6 @@ dicom-guide.rst plugins.rst developers.rst + integrations.rst faq.rst contributing.rst
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Sphinx/source/integrations.rst Tue May 29 10:32:52 2018 +0200 @@ -0,0 +1,16 @@ +Some examples of integrations with Orthanc +========================================= + + + +Osirix +------ +.. toctree:: + :maxdepth: 1 + + integrations/integrate-osirix-with-dicom.rst + +Horos +----- +.. toctree:: + :maxdepth: 1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Sphinx/source/integrations/integrate-osirix-with-dicom.rst Tue May 29 10:32:52 2018 +0200 @@ -0,0 +1,29 @@ +.. _integrate-osirix-with-dicom: + +Integrate Osirix with dicom +=========================== + +Configuration of Osirix +----------------------- + +* In Preferences->Listener, activate and configure AETitle and Port (eg : Osirix 11112). +* In Preferences->Locations, add a DICOM Nodes : + * with AETitle of orthanc (default is ORTHANC) + * with a name (eg MYORTHANC) + * with Retrieve method C-GET + * with Send Transfers syntax : Explicit Little Endian + +Configuration of Orthanc +------------------------ + +Add Modality through Environmental variable in docker:: + + DICOM_MODALITIES= + { + "Osirix": ["Osirix", "192.168.253.53", 11112] + } + +If using Orthanc in a docker container, map the Orthanc DICOM Port. Eg in docker-compose file:: + + ports: + - "4242:4242" \ No newline at end of file