Our custom OHIF Viewer.
Go to file
2016-11-15 08:24:30 +01:00
config Add requestOptions to DIMSE Server schema to fix authentication errors (OHIF-116) 2016-10-19 18:36:56 +02: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 PWV-1: Fixing studylist and viewer links styles 2016-11-15 08:24:30 +01:00
OHIFViewer PWV-1: Fixing studylist and viewer links styles 2016-11-15 08:24:30 +01:00
Packages PWV-1: Making timepoint URL load the viewer with the studies 2016-11-15 08:24:30 +01:00
PETSUVMeasurements PWV-1: Fixing studylist and viewer links styles 2016-11-15 08:24:30 +01:00
StandaloneViewer PWV-1: Fixing studylist and viewer links styles 2016-11-15 08:24:30 +01:00
.gitignore Try to fix LT-273 in CSS. Change descriptionRequired for LT-252 2016-07-22 11:12:04 +02:00
.jscsrc PWV-2: Removed duplicate keys on .jscsrc file and fix small glitch on form dialog promises. 2016-11-15 08:24:01 +01:00
.jshintrc PWV-2: Exposing ohif:measurements package's lib functions on OHIF namespace 2016-11-15 08:21:46 +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
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