Our custom OHIF Viewer.
Go to file
2017-03-02 10:18:11 -03:00
config Added orthanc script for both DIMSE and DICOMWeb 2017-03-02 10:18:11 -03:00
img Update wiki with new screenshots (OHIF-56). Add lossy compression ratio, slice location / thickness / spacing to viewport annotation 2016-08-14 14:55:59 +02:00
LesionTracker Bugfix for moving next/previous buttons 2017-03-02 10:18:11 -03:00
OHIFViewer Bug Fix: Default timpoint protocol for LT not being applied + Lesions not being correctly selected on jumpToRowItem function. 2017-03-02 10:18:11 -03:00
Packages Bugfix for moving next/previous buttons 2017-03-02 10:18:11 -03:00
StandaloneViewer Adding support for new Hanging Protocols bootstrap process on Standalone Viewer 2017-03-02 10:16:09 -03:00
.gitignore LT-55: Adding jsPDF to measurements package 2017-01-23 15:52:37 -02:00
.jscsrc LT-92: Enabling single line if for return, continue and break statements 2017-01-18 11:01:52 -02:00
.jshintrc LT-92: Enabling single line if for return, continue and break statements 2017-01-18 11:01:52 -02:00
conf.json Commented a lot of functions. Tried to get jsDoc and/or docco to work 2015-11-16 17:49:35 +01:00
LICENSE Initial commit 2015-10-13 10:57:37 +02:00
README.md Add default user/pass to readme 2016-11-30 16:49:54 -06:00

Viewers

This repo contains the OHIF DICOM Viewer and Lesion Tracker, and various shared meteor packages.

Documentation is available here: https://github.com/OHIF/Viewers/wiki

Demos

OHIF Viewer - A general-purpose radiology viewer with a variety of tools exposed.

Lesion Tracker - A prototype viewer focused on oncology metrics.

Community

Have questions? Try posting in the OHIF forum.

Docker usage

Following the instructions below, the docker image will listen for DICOM connections on port 4242, and for web traffic on port 8042. The default username for the web interface is orthanc, and the password is orthanc.

Temporary data storage

docker run --rm -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins

Persistent data storage

  1. Create a persistant data volume for Orthanc to use

    docker create --name sampledata -v /sampledata jodogne/orthanc-plugins
    

    Note: On Windows, you need to use an absolute path for the data volume, like so:

    docker create --name sampledata -v '//C/Users/erik/sampledata' jodogne/orthanc-plugins
    
  2. Run Orthanc from Docker with the data volume attached

    docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins
    
  3. Upload your data and it will be persisted