dcmjs-ecg
Version:
DICOM electrocardiography (ECG) rendering for Node.js and browser using dcmjs
82 lines (59 loc) • 3 kB
Markdown
[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![build][build-image]][build-url] [![MIT License][license-image]][license-url]
DICOM electrocardiography (ECG) rendering for Node.js and browser using Steve Pieper's [dcmjs][dcmjs-url] library.
### Note
**This effort is a work-in-progress and should not be used for production or clinical purposes.**
### Install
#### Node.js
npm install dcmjs-ecg
#### Browser
<script type="text/javascript" src="https://unpkg.com/dcmjs"></script>
<script type="text/javascript" src="https://unpkg.com/dcmjs-ecg"></script>
npm install
npm run build
```js
// Import objects in Node.js
const dcmjsEcg = require('dcmjs-ecg');
const { DicomEcg } = dcmjsEcg;
// Import objects in Browser
const { DicomEcg } = window.dcmjsEcg;
// Create an ArrayBuffer with the contents of the DICOM P10 ECG byte stream.
const ecg = new DicomEcg(arrayBuffer);
// Create rendering options.
const renderingOpts = {
// Optionally provide the rendering speed in millimeter per second.
// If not provided, the default value of 25 millimeter per second is used.
speed: 25.0,
// Optionally provide the rendering amplitude in millimeter per millivolt.
// If not provided, the default value of 5 millimeter per millivolt is used.
amplitude: 5.0,
// Optionally apply a Butterworth low pass filter with 40Hz cut off frequency.
// If not provided, the filter is not applied.
applyLowPassFilter: false
};
// Render ECG.
const renderingResult = ecg.render(renderingOpts);
// Rendered waveform in SVG format.
const svg = renderingResult.svg;
// Array of key-value-unit objects containing waveform information and interpretation.
const info = renderingResult.info;
```
Please check a live example [here][dcmjs-ecg-live-example-url].
* [dcmjs-dimse][dcmjs-dimse-url] - DICOM DIMSE implementation for Node.js using dcmjs.
* [dcmjs-imaging][dcmjs-imaging-url] - DICOM image and overlay rendering pipeline for Node.js and browser using dcmjs.
dcmjs-ecg is released under the MIT License.
[]: https://npmjs.org/package/dcmjs-ecg
[]: https://img.shields.io/npm/v/dcmjs-ecg.svg?style=flat
[]: http://img.shields.io/npm/dm/dcmjs-ecg.svg?style=flat
[]: https://github.com/PantelisGeorgiadis/dcmjs-ecg/actions/workflows/build.yml
[]: https://github.com/PantelisGeorgiadis/dcmjs-ecg/actions/workflows/build.yml/badge.svg?branch=master
[]: https://img.shields.io/badge/license-MIT-blue.svg?style=flat
[]: LICENSE.txt
[]: https://github.com/dcmjs-org/dcmjs
[]: https://github.com/PantelisGeorgiadis/dcmjs-dimse
[]: https://github.com/PantelisGeorgiadis/dcmjs-imaging
[]: https://unpkg.com/dcmjs-ecg@latest/build/index.html