Mercurial > hg > orthanc-book
annotate Sphinx/source/plugins.rst @ 96:750f7ab733c1
start documentation of authorization
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 22 Mar 2017 16:45:42 +0100 |
parents | a1e55e1baf38 |
children | 75bd7c364d9f |
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). | |
22 * Replacing the default **database back-end** of Orthanc (that is built | |
23 upon SQLite) by another (:ref:`PostgreSQL <postgresql>`, MySQL, SQL Server...). | |
24 * Creating **new REST APIs** on the top of the Orthanc built-in API (as in | |
25 in the official :ref:`DICOMweb <dicomweb>` plugin). | |
26 * **Reacting** to the arrival of new DICOM images or other | |
27 DICOM-related events so as to carry on automated processing. | |
25 | 28 * ... |
29 | |
30 Developers external to the official Orthanc project are :ref:`invited | |
38 | 31 to contribute <contributing>` to the C/C++ part of Orthanc by creating |
32 third-party plugins. A specific section of the Orthanc Book explains | |
33 :ref:`how to create new Orthanc plugins <creating-plugins>`. | |
24 | 34 |
35 .. _plugins-official: | |
36 | |
37 Index of the official plugins | |
38 ----------------------------- | |
39 | |
96
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
40 From University Hospital of Liège |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
41 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
42 |
24 | 43 .. toctree:: |
44 :maxdepth: 1 | |
45 | |
31
93bbfaf0e62c
worklist instructions migrated to a specific page, indexing of Osimis Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
46 plugins/webviewer.rst |
24 | 47 plugins/dicomweb.rst |
48 plugins/postgresql.rst | |
53 | 49 plugins/wsi.rst |
24 | 50 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
|
51 plugins/serve-folders.rst |
24 | 52 |
96
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
53 From Osimis |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
54 ^^^^^^^^^^^ |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
55 |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
56 * :ref:`authorization` |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
57 * `Osimis <http://osimis.io/>`__ maintains an evolution of the |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
58 official Web viewer plugin. The Osimis plugin adds tools for |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
59 measuring, for viewing multiple series, and for split-pane. `Check |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
60 out the source code |
750f7ab733c1
start documentation of authorization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
93
diff
changeset
|
61 <https://bitbucket.org/osimis/osimis-webviewer-plugin>`__. |
24 | 62 |
63 .. _plugins-contributed: | |
64 | |
65 Index of the contributed plugins | |
66 -------------------------------- | |
67 | |
68 * `DWV Orthanc Plugin | |
69 <https://github.com/ivmartel/dwv-orthanc-plugin>`__: This plugin by | |
70 Yves Martelli is based on `dwv | |
71 <https://github.com/ivmartel/dwv/wiki>`__ and extends Orthanc with a | |
72 Web viewer of DICOM images. | |
73 * Another Web viewer is provided courtesy of `Emsy Chan | |
25 | 74 <https://groups.google.com/d/msg/orthanc-users/EC5Z2KaM4Hs/MG3KkzhCDAAJ>`__. |
71 | 75 * `VPI Reveal <http://www.vpireveal.com/>`__ provides a plugin to |
76 "write the DICOM records in a normal Windows-readable file hierarchy | |
70 | 77 (patient-study-series-DICOM file) at a location called |
78 ``VPIStorage`` that can then be imported into VPI Reveal." `Check | |
71 | 79 out their source code |
70 | 80 <https://github.com/jodogne/OrthancContributed/tree/master/Plugins/orthancVPIRevealPlugin>`__. |
93 | 81 * `Doc Cirrus <https://www.doc-cirrus.com/>`__ is working on `MongoDB |
82 <https://en.wikipedia.org/wiki/MongoDB>`__ database plugins. `Check | |
83 out their source code | |
84 <https://github.com/Doc-Cirrus/orthanc-mongodb>`__. | |
40 | 85 * Check out the `OrthancContributed repository on GitHub |
86 <https://github.com/jodogne/OrthancContributed/tree/master/Plugins>`__, that | |
87 might contain plugins that are not tracked in this list. | |
24 | 88 |
38 | 89 *Remark:* Do not hesitate to `contact us |
90 <http://www.orthanc-server.com/static.php?page=contact>`__ if you have | |
91 developed a plugin so that we can include it in the list above! |