1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Orthanc Web Viewer is a plugin to Orthanc, a lightweight, RESTful Vendor
Neutral Archive for medical imaging. It extends Orthanc with an integrated
Web viewer of DICOM images.
Homepage: https://orthanc.uclouvain.be/book/plugins/webviewer.html
The plugin is accessible from Orthanc Explorer, the built-in Web
interface of Orthanc. To open Orthanc Explorer with Mozilla Firefox,
use the following command:
$ firefox http://localhost:8042/app/explorer.html
Browse to your series of interest. You will see a yellow button
entitled "Orthanc Web Viewer". Clicking on it will open the Web viewer
on the series.
Update notes
------------
If after installing this plugin, the Web viewer does not properly
display some series of images, this is most probably due to the fact
that the cache of the Web viewer needs to be rebuilt after an
update. Here are the commands to do so, provided the cache is located
at the default location:
# sudo /etc/init.d/orthanc stop
# sudo rm -rf /var/lib/orthanc/db-v6/WebViewerCache/
# sudo /etc/init.d/orthanc start
|