Our custom OHIF Viewer.
- Convert series number and instance number to integer in imageDetails.sortingInfo to sort the images properly (e.g. 1,2,10 instead of 1,10,2) - Sort based on firstly instanceNumber, then seriesNumber, to show the first instance of the next series in the next viewport instead of the second instance of the previous series in multiple layout (other than 1x1) - Do nothing when clicked if the previous and next stage buttons are disabled - Add forgotten undefined check statements |
||
|---|---|---|
| config | ||
| img | ||
| LesionTracker | ||
| OHIFViewer | ||
| Packages | ||
| StandaloneViewer | ||
| .gitignore | ||
| .jscsrc | ||
| .jshintrc | ||
| conf.json | ||
| LICENSE | ||
| README.md | ||
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
-
Create a persistant data volume for Orthanc to use
docker create --name sampledata -v /sampledata jodogne/orthanc-pluginsNote: 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 -
Run Orthanc from Docker with the data volume attached
docker run --volumes-from sampledata -p 4242:4242 -p 8042:8042 jodogne/orthanc-plugins -
Upload your data and it will be persisted