Mercurial > hg > orthanc-book
view Sphinx/source/integrations/integrate-osirix-using-dicomweb.rst @ 1219:edee43d6b49e
fix spelling of DICOMweb
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Wed, 12 Nov 2025 13:21:11 +0100 |
| parents | 166ec184efd8 |
| children |
line wrap: on
line source
.. _integrate-osirix-using-dicomweb: Integrate Osirix using DICOMweb =============================== .. note:: The OsiriX team has a blog post entitled "`Installing Orthanc (Open-Source PACS) on Mac <https://www.osirix-viewer.com/installing-orthanc-open-source-pacs-on-mac/>`__" that provides a guide to interface OsiriX with Orthanc through :ref:`DICOMweb <dicomweb>`. Configuration of Osirix ----------------------- - In ``Preferences->Listener``, activate and configure AETitle and Port (e.g. Osirix 11112) - In ``Preferences->Locations->DICOMweb Node``, add a DICOM Node: - with the URL of the Orthanc server - with the DICOMweb API path of Orthanc (default is ``/dicom-web``) - with a name (eg ``MYORTHANC``) - with Q&R activated - without authentication - with Send Transfers syntax: Explicit Little Endian Configuration of Orthanc ------------------------ First, make sure to :ref:`install and enable the DICOMweb plugin <dicomweb>`. Adapt the following :ref:`configuration options <configuration>` (obviously, adapt the IP address):: { "Plugins" : [ /* fill the path to the DICOMweb plugin */ ], "RemoteAccessAllowed" : true, "DicomWeb" : { "Enable" : true, "Root" : "/dicom-web/" } } Configuration of Docker images by Orthanc Team ---------------------------------------------- This section applies if you are using the :ref:`orthancteam/orthanc Docker image <docker-orthancteam>` to run Orthanc. Make sure Orthanc has the DICOMweb protocol enabled:: DICOM_WEB_PLUGIN_ENABLED: "true" If using Orthanc in a Docker container, map the Orthanc DICOMweb HTTP port. Eg in docker-compose file:: ports: - "8042:8042"
