Mercurial > hg > orthanc-book
annotate Sphinx/source/integrations/integrate-horos-using-dicom.rst @ 1113:a588960a72e5 default tip
spelling
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Mon, 28 Oct 2024 09:23:08 +0100 |
parents | 5d4701d8fe28 |
children |
rev | line source |
---|---|
146
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
1 .. _integrate-horos-using-dicom: |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
2 |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
3 Integrate Horos using DICOM |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
4 =========================== |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
5 |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
6 Configuration of Horos |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
7 ----------------------- |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
8 |
148
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
9 - In ``Preferences->Listener``, activate and configure AETitle and Port (e.g. Horos 11112). |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
10 - In ``Preferences->Locations``, add a DICOM Node: |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
11 |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
12 - with the AET of your Orthanc instance (default is ``ORTHANC``) |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
13 - with a name (eg ``MYORTHANC``) |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
14 - with Retrieve method C-GET |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
15 - with Send Transfers syntax : Explicit Little Endian |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
16 |
146
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
17 |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
18 Configuration of Orthanc |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
19 ------------------------ |
fa19c0fa1367
integrate with horos and DICOM + fix typo
Sebastien Abras <sa@osimis.io>
parents:
diff
changeset
|
20 |
148
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
21 Add the following :ref:`configuration options <configuration>` |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
22 (obviously, adapt the IP address):: |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
23 |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
24 { |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
25 "DicomModalities" : { |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
26 "Horos": [ "Horos", "192.168.253.53", 11112 ] |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
27 } |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
28 } |
8f3f79aeb8cc
review pull request
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
146
diff
changeset
|
29 |