All Projects → dcmjs-org → dicomweb-server

dcmjs-org / dicomweb-server

Licence: Apache-2.0 license
Lightweight DICOMweb Server with CouchDB

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to dicomweb-server

Viewers
The OHIF Medical Imaging Viewer is for viewing medical images. It can retrieve and load images from most sources and formats; render sets in 2D, 3D, and reconstructed representations; allows for the manipulation, annotation, and serialization of observations; supports internationalization, OpenID Connect, offline use, hotkeys, and many more features.
Stars: ✭ 1,753 (+2268.92%)
Mutual labels:  dicom, nci-itcr, nci-qin
react-vtkjs-viewport
VTK.js image viewport component in React
Stars: ✭ 112 (+51.35%)
Mutual labels:  nci-itcr, nci-qin
weasis-chcapi-extension
Weasis plugin adding support for the Google Cloud Healthcare API
Stars: ✭ 12 (-83.78%)
Mutual labels:  dicom, dicomweb
qupath-chcapi-extension
Extension to QuPath application adding support for reading from Google Cloud Healthcare API.
Stars: ✭ 13 (-82.43%)
Mutual labels:  dicom, dicomweb
bluelight
a browser-based DICOM viewer
Stars: ✭ 35 (-52.7%)
Mutual labels:  dicom, dicomweb
dicomweb-wsi-viewer
Proof of concept whole slide imaging viewer on top of Google Cloud Healthcare DICOM API.
Stars: ✭ 34 (-54.05%)
Mutual labels:  dicom, dicomweb
dicomweb-pacs
Easy to use DICOMWEB enabled PACS with DIMSE services based on sqlite database
Stars: ✭ 42 (-43.24%)
Mutual labels:  dicom, dicomweb
healthcare-dicom-dicomweb-adapter
Adapter which transforms DIMSE requests to DICOMweb requests
Stars: ✭ 92 (+24.32%)
Mutual labels:  dicom, dicomweb
neurdicom
RESTful PACS server with plugins
Stars: ✭ 97 (+31.08%)
Mutual labels:  dicom, dicomweb
Cornerstone
JavaScript library to display interactive medical images including but not limited to DICOM
Stars: ✭ 1,690 (+2183.78%)
Mutual labels:  dicom, nci-itcr
dicom-microscopy-viewer
Web-based DICOM slide microscopy viewer library
Stars: ✭ 70 (-5.41%)
Mutual labels:  dicom, dicomweb
comdb
A PouchDB plugin that transparently encrypts and decrypts its data.
Stars: ✭ 36 (-51.35%)
Mutual labels:  couchdb
deid
best effort anonymization for medical images using python
Stars: ✭ 108 (+45.95%)
Mutual labels:  dicom
AlizaMS
DICOM Viewer
Stars: ✭ 144 (+94.59%)
Mutual labels:  dicom
ember-cli-blog
Tom Dale's blog example updated for the Ember CLI
Stars: ✭ 87 (+17.57%)
Mutual labels:  couchdb
contrib-pydicom
contributions to the core pydicom base, including tutorials, extra plugins, etc.
Stars: ✭ 46 (-37.84%)
Mutual labels:  dicom
flask-couch-microservice
Star the repo if its useful, looking for contributors
Stars: ✭ 22 (-70.27%)
Mutual labels:  couchdb
MITK-Diffusion
MITK Diffusion - Official part of the Medical Imaging Interaction Toolkit
Stars: ✭ 47 (-36.49%)
Mutual labels:  dicom
civic-server
Backend Server for CIViC Project
Stars: ✭ 39 (-47.3%)
Mutual labels:  nci-itcr
designeditor
Couchdb _design documents editor
Stars: ✭ 37 (-50%)
Mutual labels:  couchdb

dicomweb-server

Lightweight DICOMweb Server with CouchDB

Note: this is a work in progress and not intended for production or clinical use.

More background information can found in https://na-mic.github.io/ProjectWeek/PW30_2019_GranCanaria/Projects/DICOMweb-CouchDB/

Architecture

The dicomweb-server is a fastify server that speaks DICOMweb to clients and fullfills their requests using CouchDB or other plugin services. Overall design

Authentification

By default, the authentication is none and the application mode is development. You can change the authentication method by changing the auth attribute in config/development.js The value you put in should be the name of a json file in the config directory. A sample config for authentication should have the following information

{ "realm": "your-realm", "authServerUrl": "your-auth-server-port-and-port", "clientId": "your-client-id", "clientSecret": "your-secret" }

If using the default authentication of couchdb with an admin account, you will need to specify the admin username and password in config/development.js in the below style:

{ dbServer: process.env.DB_SERVER || 'http://username:password@localhost' }

Installation

git clone git://github.com/dcmjs-org/dicomweb-server

cd dicomweb-server
npm install

Install CouchDB.

Initially your CouchDB database starts empty, but dicomweb-server will set up the internal database and design documents so there is no need to configure it.

You can run tests by running npm test.

Running

Be sure to have CouchDB running at localhost:5984 (the default), then start the dicomweb-server:

npm start

Usage

The server should be ultimately compatible with any DICOMweb client library.

We test with a Python implementation dicomweb_client.

Get study list:

dicomweb_client --url http://localhost:5985 search studies

Store a DATA_DIRECTORY of DICOM image files (here with the ".IMA" extension). Adjust the command line to match the location and naming of your files. (The -n25 option to xargs is for batching files, leading to fewer calls and thus less overhead.)

find DATA_DIRECTORY -iname \*.IMA -print0 | xargs -0 -n25 dicomweb_client --url http://localhost:5985 store instances

Use with a viewer

It's possible to use this server as a backend to the OHIF Viewer using a configuration like this. (See this file).

     const dicomweb_serverConfig = {
        routerBasename: "/ohif",
        rootUrl: "http://localhost:2016/ohif",
        servers: {
          "dicomWeb": [
            {
              "name": "dicomweb_server",
              "wadoUriRoot": "http://localhost:5985",
              "qidoRoot": "http://localhost:5985",
              "wadoRoot": "http://localhost:5985",
              "qidoSupportsIncludeField": true,
              "imageRendering": "wadouri",
              "thumbnailRendering": "wadors",
              "requestOptions": {
                  "requestFromBrowser": true
              }
            },
          ]
        }
      };

Note that currently the imageRendering option must be wadouri

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].