All Projects → fwoelffel → orthanc-client

fwoelffel / orthanc-client

Licence: MIT license
An Orthanc client for node.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to orthanc-client

bluelight
a browser-based DICOM viewer
Stars: ✭ 35 (+45.83%)
Mutual labels:  dicom, orthanc
dicomweb-pacs
Easy to use DICOMWEB enabled PACS with DIMSE services based on sqlite database
Stars: ✭ 42 (+75%)
Mutual labels:  dicom, orthanc
Dcmjs
dcmjs is a javascript cross-compile of dcmtk (dcmtk.org).
Stars: ✭ 92 (+283.33%)
Mutual labels:  dicom
Cornerstonewadoimageloader
DICOM WADO Image Loader for the cornerstone library
Stars: ✭ 195 (+712.5%)
Mutual labels:  dicom
Dcmqi
dcmqi (DICOM for Quantitative Imaging) is a free, open source library that can help with the conversion between imaging research formats and the standard DICOM representation for image analysis results
Stars: ✭ 126 (+425%)
Mutual labels:  dicom
Dicom Server
OSS Implementation of DICOMweb standard
Stars: ✭ 101 (+320.83%)
Mutual labels:  dicom
Dicomcloud
Azure friendly DICOMweb part 18 .NET server with qido-rs, wado-rs, stow-rs, wado-uri RESTful implementation
Stars: ✭ 140 (+483.33%)
Mutual labels:  dicom
Dicom Ecg Plot
Dicom ECG Viewer and Converter. Convert to PDF, PNG, JPG, SVG, ...
Stars: ✭ 84 (+250%)
Mutual labels:  dicom
Gdcm
Grassroots DICOM read-only mirror. Only for Pull Request. Please report bug at http://sf.net/p/gdcm
Stars: ✭ 240 (+900%)
Mutual labels:  dicom
Evil Dicom
A C# DICOM Library
Stars: ✭ 121 (+404.17%)
Mutual labels:  dicom
Dicomtomesh
A command line tool to transform a DICOM volume into a 3d surface mesh (obj, stl or ply). Several mesh processing routines can be enabled, such as mesh reduction, smoothing or cleaning. Works on Linux, OSX and Windows.
Stars: ✭ 191 (+695.83%)
Mutual labels:  dicom
Cornerstone
JavaScript library to display interactive medical images including but not limited to DICOM
Stars: ✭ 1,690 (+6941.67%)
Mutual labels:  dicom
Gdl
GDL - GNU Data Language
Stars: ✭ 104 (+333.33%)
Mutual labels:  dicom
Dcmjs
Javascript implementation of DICOM manipulation
Stars: ✭ 150 (+525%)
Mutual labels:  dicom
Go Dicom
🏥 DICOM Medical Image Parser in Go
Stars: ✭ 96 (+300%)
Mutual labels:  dicom
Dicompyler
Extensible radiation therapy research platform and viewer for DICOM and DICOM RT
Stars: ✭ 195 (+712.5%)
Mutual labels:  dicom
Projectaiai
AiAi.care project is teaching computers to "see" chest X-rays and interpret them how a human Radiologist would. We are using 700,000 Chest X-Rays + Deep Learning to build an FDA 💊 approved, open-source screening tool for Tuberculosis and Lung Cancer. After an MRMC clinical trial, AiAi CAD will be distributed for free to emerging nations, charitable hospitals, and organizations like WHO 🌏 We will also release our pretrained models and weights as Medical Imagenet.
Stars: ✭ 92 (+283.33%)
Mutual labels:  dicom
Mritopng
A simple python module to make it easy to batch convert DICOM files to PNG images.
Stars: ✭ 113 (+370.83%)
Mutual labels:  dicom
Dicomviewer
DICOM Viewer in Nextcloud
Stars: ✭ 139 (+479.17%)
Mutual labels:  dicom
wsi-to-dicom-converter
Conversion tool/library for converting whole slide images to DICOM
Stars: ✭ 52 (+116.67%)
Mutual labels:  dicom

orthanc-client Build Status

An Orthanc REST API client designed for NodeJS.

Installation

$ npm install orthanc-client

Usage

var oc = require('orthanc-client');
var client = new oc({
    url: 'http://localhost:8042',
    auth: {
      username: 'foo',
      password: 'bar'
    }
});

client.instances.getAll()
    .then(function(res) {
        console.log(res);
    })
    .catch(function(err) {
        console.log(err);
    });

Documentation

I've written a short documentation for each implemented functions. You can read it in the DOCUMENTATION.md file. Feel free to improve it and send a pull request.

REST API

You'll find the quick reference for Orthanc's REST API here

License

Copyright 2015 - Frédéric Woelffel Published under the MIT open source license. See full license in LICENSE.txt

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].