Our custom OHIF Viewer.
Go to file
2016-03-06 11:22:45 -05:00
config LT-196: Add verifyEmail property under public property in settings.json to control emailVerification template 2016-02-28 15:25:23 -05:00
etc Fix Meteor settings 2016-02-08 23:12:33 +01:00
img Add more images for the wiki 2016-02-09 14:22:59 +01:00
LesionTracker - Rename lesion tool as bidirectional tool 2016-03-04 19:03:16 -05:00
OHIFViewer LT-73 Move export tool and progress dialog component to OHIFViewer 2016-03-01 11:55:58 -05:00
Packages LT-115: Remove CRUNEX tools 2016-03-06 11:22:45 -05:00
.gitignore Updates for Timepoint assocation (LT-60) and Conformance Checks (LT-92, LT-93, LT-94) 2016-02-08 19:59:39 +01:00
.jscsrc Updates for Timepoint assocation (LT-60) and Conformance Checks (LT-92, LT-93, LT-94) 2016-02-08 19:59:39 +01:00
.jshintrc Fixed loaded study indicator. Closes LT-91 2016-01-11 12:01:11 +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 documentation link 2016-02-09 14:09:21 +01: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

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