* Adding a better error handling for DICOMWeb getJson method * Adding a better error handling for DICOMWeb getBulkData method * Fixinf some typos. Using console.error to log errors * Better error handling for DIMSE connections * Using meteor error in StudyListSearch to better display same error in the client * Using Meteor.Error for a better pattern. Added an error message in the study list. created connection error types to DICOMWeb connection errors * Changing error types for server connection. Added better errors for DIMSE server on sockets * Improving viewer response to error being throw when not finding server to display studies * OHIF-168: adding catches clauses for retrieveStudyMetada method * OHIF-168: fixing typo in DIMSE.js * OHIF-168: setting the session variable to false when starting a new studylist search * OHIF-168: Using OHIF.log instead of console * OHIF-168: removing parsing into string for OHIF.log in Connection.js * OHIF-168: improving error message visibility in study viewer |
||
|---|---|---|
| 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 on our google groups 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
-
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