Our custom OHIF Viewer.
Go to file
2015-12-15 16:49:26 -05:00
config Add some WIP changes to Lesion Tracker dialogs 2015-12-09 14:26:11 +01:00
etc Add some WIP changes to Lesion Tracker dialogs 2015-12-09 14:26:11 +01:00
LesionTracker Remove duplicated function. Added error handling to imageViewerViewport in cases where DOM element is removed. 2015-12-15 16:49:26 -05:00
OHIFViewer Fix OHIF global variable definition bug in OHIF Viewer, moved resizeViewportElements to viewerbase 2015-12-15 10:20:57 -05:00
Packages Remove duplicated function. Added error handling to imageViewerViewport in cases where DOM element is removed. 2015-12-15 16:49:26 -05:00
.gitignore Commented a lot of functions. Tried to get jsDoc and/or docco to work 2015-11-16 17:49:35 +01: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
Makefile Commented a lot of functions. Tried to get jsDoc and/or docco to work 2015-11-16 17:49:35 +01:00
README.md Update README.md 2015-11-17 13:42:08 +01:00

Viewers

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

Documentation is available here: http://ohif.github.io/Viewers

Demos

OHIF viewer - A prototype general-purpose radiology viewer with a variety of tools exposed. Lesiontracker - a prototype viewer focused on oncology metrics.

Community

Have questions? Try posting in the OHIF forum.

Docker usage

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