* Small refactor into Table Class setting events as static object into class * feature(STOW-SR) : Initial changes to stow when we have Server. * Improvements into requests and small fix into style * Small fix for jumpToRow without refheshing page * Handling STOW-SR once we don't have server * feature(STOW-SR) Refactor * Merge request with makeRequest and delete old file * Expose wadoproxy to client and update measurement-table to start using wadoproxy.getServerUrl * Move WADOProxy.getServerUrl to Measurement-table package. Fix querystring issue. * Remove proxy:enabled in favour of requestOptions.requestFromBrowser * Bcrypt 2.0.0 to fix Travis |
||
|---|---|---|
| config | ||
| dockersupport | ||
| docs | ||
| img | ||
| LesionTracker | ||
| OHIFViewer | ||
| Packages | ||
| StandaloneViewer | ||
| test | ||
| .dockerignore | ||
| .eslintignore | ||
| .eslintrc.js | ||
| .gitignore | ||
| .jscsrc | ||
| .jshintrc | ||
| .travis.yml | ||
| conf.json | ||
| development.Dockerfile | ||
| docker-compose.yml | ||
| dockerfile | ||
| generateStaticSite.sh | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
Viewers
This repo contains the OHIF DICOM Viewer and Lesion Tracker, and various shared meteor packages.
Documentation is available here: http://docs.ohif.org/
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