* Added container class for plugins that care for registration of submodules * Added extensions manager that cares for adding modules to store * Make extensions require less knowledge of internal extension management * Reformatting * Update generateStaticSite to use ohif-viewer, remove old OHIFViewer-react folder * Add yarn.lock so Netlify knows to use Yarn * Fix for copying static site folder * Try to fix netlify build which is stuck uploading * Try to fix static site deployment * Try to fix static site deployment again * Try to fix static site deployment one more time * Extracted pdf plugin into external package * Removed some unused dependencies * Published pdf extension to npm registry * Added external microscopy extension (work in progress) * Extraction of microscopy plugin working now * Added microscopy extension npm package to package.json * Increase ohif-core version * update yarn.lock * Fix error in readme * Fix authentication error in pdf plugin * Remove readme, update packages, add redirect for netlify * netlify test * netlify test 2 * netlify test 2, forgot to add new redirects file * Use public dicom server for demo * Another netlify try * Another netlify try 2 * Another netlify try 3 * Another netlify try 4 |
||
|---|---|---|
| config | ||
| config-react | ||
| dockersupport | ||
| docs | ||
| img | ||
| legacy | ||
| OHIFViewer | ||
| Packages | ||
| Packages-react | ||
| StandaloneViewer | ||
| test | ||
| _redirects | ||
| .dockerignore | ||
| .eslintignore | ||
| .eslintrc.js | ||
| .gitignore | ||
| .gitmodules | ||
| .jscsrc | ||
| .jshintrc | ||
| .travis.yml | ||
| conf.json | ||
| development.Dockerfile | ||
| docker-compose.yml | ||
| dockerfile | ||
| generateStaticSite.sh | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| yarn.lock | ||
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