Mercurial > hg > orthanc-book
annotate Sphinx/source/plugins/volview.rst @ 945:11d7d30ca273
updated auth plugin doc
author | Alain Mazy <am@osimis.io> |
---|---|
date | Wed, 26 Apr 2023 12:07:30 +0200 |
parents | 6e61cb5edf4c |
children | 01f61385877f |
rev | line source |
---|---|
925 | 1 .. _volview: |
2 | |
3 | |
4 Kitware's VolView plugin | |
5 ======================== | |
6 | |
7 .. contents:: | |
8 | |
9 This **official** plugin by the `ICTEAM institute of UCLouvain | |
10 <https://uclouvain.be/en/research-institutes/icteam>`__ extends | |
11 Orthanc with `Kitware's VolView <https://volview.kitware.com/>`__ Web | |
12 interface for cinematic volume rendering of DICOM data. | |
13 | |
14 | |
15 Usage | |
16 ----- | |
17 | |
18 This plugin adds a dedicated button to Orthanc Explorer, which | |
19 provides an easy access to VolView (click on the image to view a demo | |
20 video): | |
21 | |
22 .. image:: ../images/VolView.png | |
23 :align: center | |
24 :width: 800 | |
25 :target: https://www.youtube.com/watch?v=taQ6TiFJTHE | |
26 | | |
27 | |
926
6e61cb5edf4c
volview in oe2 and docker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
925
diff
changeset
|
28 Starting with its release 0.8.2, the :ref:`Orthanc Explorer 2 |
6e61cb5edf4c
volview in oe2 and docker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
925
diff
changeset
|
29 <orthanc-explorer-2>` plugin also provides a button to open VolView: |
6e61cb5edf4c
volview in oe2 and docker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
925
diff
changeset
|
30 |
6e61cb5edf4c
volview in oe2 and docker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
925
diff
changeset
|
31 |
6e61cb5edf4c
volview in oe2 and docker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
925
diff
changeset
|
32 .. image:: ../images/VolView-OE2.png |
6e61cb5edf4c
volview in oe2 and docker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
925
diff
changeset
|
33 :align: center |
6e61cb5edf4c
volview in oe2 and docker
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
925
diff
changeset
|
34 :width: 800 |
925 | 35 |
36 Compilation | |
37 ----------- | |
38 | |
39 .. highlight:: bash | |
40 | |
41 Official releases can be `downloaded from the Orthanc homepage | |
42 <https://www.orthanc-server.com/browse.php?path=/plugin-volview>`__. As | |
43 an alternative, the `repository containing the source code | |
44 <https://orthanc.uclouvain.be/hg/orthanc-volview/>`__ can be accessed using | |
45 Mercurial. | |
46 | |
47 The procedure to compile this plugin is similar of that for the | |
48 :ref:`core of Orthanc <binaries>`. The following commands should work | |
49 on most GNU/Linux distributions, provided Docker is installed:: | |
50 | |
51 $ mkdir Build | |
52 $ cd Build | |
53 $ ../Resources/CreateVolViewDist.sh | |
54 $ cmake .. -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release | |
55 $ make | |
56 | |
57 The compilation will produce a shared library ``libOrthancVolView.so`` | |
58 that contains the VolView plugin for Orthanc. | |
59 | |
60 Pre-compiled Linux Standard Base (LSB) binaries `are available for | |
61 download <https://lsb.orthanc-server.com/plugin-volview/>`__. | |
62 | |
63 Pre-compiled binaries for Microsoft Windows and macOS `are also | |
64 available | |
65 <https://www.orthanc-server.com/browse.php?path=/plugin-volview>`__. | |
66 | |
67 Furthermore, the :ref:`Docker images <docker>` | |
68 ``jodogne/orthanc-plugins`` and ``osimis/orthanc`` also contain the | |
69 plugin. Debian and Ubuntu packages can be found in the | |
70 :ref:`standalone repository <binaries>` | |
71 ``https://debian.orthanc-labs.com/``. | |
72 | |
73 | |
74 Configuration | |
75 ------------- | |
76 | |
77 .. highlight:: json | |
78 | |
79 Here is a minimal sample :ref:`configuration file <configuration>` to | |
80 use this plugin:: | |
81 | |
82 { | |
83 "Plugins" : [ | |
84 "/home/user/OrthancVolView/Build/libOrthancVolView.so" | |
85 ] | |
86 } | |
87 | |
88 Orthanc must of course be restarted after the modification of its | |
89 configuration file. |