Mercurial > hg > orthanc-book
annotate Sphinx/source/plugins.rst @ 470:90e6c20cef1e
indexing orthanc-gdt python plugin
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 04 Aug 2020 16:53:18 +0200 |
parents | 938206110483 |
children | 4f076a3b9934 |
rev | line source |
---|---|
24 | 1 .. _plugins: |
2 | |
3 Plugins | |
4 ======= | |
5 | |
25 | 6 .. contents:: |
7 | |
8 Overview | |
9 -------- | |
10 | |
24 | 11 The core of Orthanc can be extended through **plugins**. A plugin |
12 takes the form of a shared library (``.DLL`` under Windows, ``.so`` | |
42 | 13 under GNU/Linux, ``.dylib`` under Apple OS X...). A plugin can do |
14 various things, among others: | |
24 | 15 |
16 * Serving new **Web applications** that have full access to the REST | |
17 API of Orthanc, which makes easy to handle DICOM images from | |
18 JavaScript code. | |
19 * Replacing **the way DICOM images are decoded** (e.g. the official | |
20 :ref:`Web viewer plugin <webviewer>` introduces the decoding of | |
21 JPEG2000 images, which is not available in the core of Orthanc). | |
154 | 22 * Replacing the default **database back-end** of Orthanc (that is |
23 built upon SQLite) by another (:ref:`PostgreSQL <postgresql>`, | |
24 :ref:`MySQL <mysql>`, SQL Server...). | |
24 | 25 * Creating **new REST APIs** on the top of the Orthanc built-in API (as in |
26 in the official :ref:`DICOMweb <dicomweb>` plugin). | |
27 * **Reacting** to the arrival of new DICOM images or other | |
28 DICOM-related events so as to carry on automated processing. | |
25 | 29 * ... |
30 | |
31 Developers external to the official Orthanc project are :ref:`invited | |
38 | 32 to contribute <contributing>` to the C/C++ part of Orthanc by creating |
33 third-party plugins. A specific section of the Orthanc Book explains | |
34 :ref:`how to create new Orthanc plugins <creating-plugins>`. | |
24 | 35 |
36 .. _plugins-official: | |
37 | |
38 Index of the official plugins | |
39 ----------------------------- | |
40 | |
96
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
41 From University Hospital of Liège |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
42 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
43 |
24 | 44 .. toctree:: |
45 :maxdepth: 1 | |
46 | |
31
93bbfaf0e62c
worklist instructions migrated to a specific page, indexing of Osimis Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
47 plugins/webviewer.rst |
24 | 48 plugins/dicomweb.rst |
49 plugins/postgresql.rst | |
53 | 50 plugins/wsi.rst |
24 | 51 plugins/worklists-plugin.rst |
31
93bbfaf0e62c
worklist instructions migrated to a specific page, indexing of Osimis Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
52 plugins/serve-folders.rst |
431 | 53 plugins/gdcm.rst |
24 | 54 |
229 | 55 .. _plugins-osimis: |
56 | |
96
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
57 From Osimis |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
58 ^^^^^^^^^^^ |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
59 |
301
b2baccb32101
page dedicated to the Osimis Web viewer plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
254
diff
changeset
|
60 * :ref:`osimis_webviewer` |
154 | 61 * :ref:`mysql` |
96
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
62 * :ref:`authorization` |
164 | 63 * :ref:`transfers` |
254 | 64 * :ref:`google` |
451 | 65 * :ref:`python-plugin` |
66 * :ref:`object-storage` | |
24 | 67 |
68 .. _plugins-contributed: | |
69 | |
70 Index of the contributed plugins | |
71 -------------------------------- | |
72 | |
470
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
73 C/C++ plugins |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
74 ^^^^^^^^^^^^^ |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
75 |
163 | 76 * `AWS S3 storage plugin |
77 <https://github.com/radpointhq/orthanc-s3-storage>`__: This plugin | |
358
011b01ccf52d
fixing external hyperlinks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
341
diff
changeset
|
78 by `Radpoint <https://radpoint.pl/>`__ makes Orthanc store its |
163 | 79 DICOM files into an `Amazon S3 bucket |
80 <https://en.wikipedia.org/wiki/Amazon_S3>`__. | |
470
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
81 |
24 | 82 * `DWV Orthanc Plugin |
83 <https://github.com/ivmartel/dwv-orthanc-plugin>`__: This plugin by | |
84 Yves Martelli is based on `dwv | |
85 <https://github.com/ivmartel/dwv/wiki>`__ and extends Orthanc with a | |
86 Web viewer of DICOM images. | |
470
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
87 |
24 | 88 * Another Web viewer is provided courtesy of `Emsy Chan |
25 | 89 <https://groups.google.com/d/msg/orthanc-users/EC5Z2KaM4Hs/MG3KkzhCDAAJ>`__. |
470
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
90 |
358
011b01ccf52d
fixing external hyperlinks
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
341
diff
changeset
|
91 * `VPI Reveal <https://www.vpireveal.com/>`__ provides a plugin to |
71 | 92 "write the DICOM records in a normal Windows-readable file hierarchy |
70 | 93 (patient-study-series-DICOM file) at a location called |
94 ``VPIStorage`` that can then be imported into VPI Reveal." `Check | |
71 | 95 out their source code |
70 | 96 <https://github.com/jodogne/OrthancContributed/tree/master/Plugins/orthancVPIRevealPlugin>`__. |
470
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
97 |
93 | 98 * `Doc Cirrus <https://www.doc-cirrus.com/>`__ is working on `MongoDB |
115 | 99 <https://en.wikipedia.org/wiki/MongoDB>`__ database plugins. Check |
100 out their `source code | |
101 <https://github.com/Doc-Cirrus/orthanc-mongodb>`__ and the | |
102 `associated description | |
103 <https://github.com/jodogne/OrthancContributed/tree/master/Plugins/orthanc-mongodb>`__. | |
470
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
104 |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
105 Python plugins |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
106 ^^^^^^^^^^^^^^ |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
107 |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
108 * Julian Hartig maintains a `Python plugin |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
109 <https://github.com/crispinus2/orthanc-gdt>`__ called |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
110 ``orthanc-gdt``, in order to glue Orthanc to the `GDT interface most |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
111 German AIS <https://en.wikipedia.org/wiki/XDT>`__ |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
112 (Arztinformationssysteme - as opposed to e.g. the RIS used by |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
113 radiologists) use for communicating with external applications and |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
114 devices. This topic is further discussed on the `Orthanc Users forum |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
115 <https://groups.google.com/d/msg/orthanc-users/NO7MnWzKsAc/5hEVxymWBQAJ>`__. |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
116 |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
117 |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
118 Other |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
119 ^^^^^ |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
120 |
40 | 121 * Check out the `OrthancContributed repository on GitHub |
122 <https://github.com/jodogne/OrthancContributed/tree/master/Plugins>`__, that | |
123 might contain plugins that are not tracked in this list. | |
24 | 124 |
470
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
125 * **Important:** Do not hesitate to `contact us |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
126 <https://www.orthanc-server.com/static.php?page=contact>`__ if you |
90e6c20cef1e
indexing orthanc-gdt python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
451
diff
changeset
|
127 have developed a plugin so that we can promote it in the list above! |