All Projects → epam → Med3web

epam / Med3web

Licence: other
Med3Web is a high performance web tool for advanced 2-D and 3-D medical visualizations.

Programming Languages

javascript
184084 projects - #8 most used programming language

Med3Web Dicom 2d/3d web viewer.

Copyright (c) 2015–2020 EPAM Systems, Inc.

Purpose

Med3Web is a high performance web tool for advanced visualization (both in 2d and 3d modes) medical volumetric data, provided in popular file formats: Dicom, Nifti, Ktx, Hdr. Other popular formats will be planned for future improvements. Med3Web can read local data from files/folders and from predefined web locations. Demonstration project shows both (local data / remote data) usage types. It works as a standalone HTML5 web application. The latest version can be used with WebGL-enabled desktop browsers (Chrome, Firefox, Opera) and allow limited usage with mobile browsers (Android Chrome). Version for Safari (macOS, iOS) is planned for future.

Background image

Market evaluation

Med3Web can be used in a medical center with diagnostic equipment. MRI and CT scanning results can be viewed in any computer (inside the medical office and in the client home) and qualified medical personnel can provide diagnosis or conclusion based on provided visualization. Unlike the range of standalone Dicom viewers executables, this app can be used as a web application as a part of large websites and services. Also, it can be used by research institutes due to Nifti, Hdr, etc. file standards support (more popular for researchers rather than physicians). Medical centers can create their clients database, based on this viewer.

References

Dicom file format description can be found here and here. Ktx file format details are listed in KTX. Popular Dicom loader framework: GDCM. Some JavaScript libraries to work with Dicom file format:

  1. dicomParser
  2. Daikon
  3. Xtk.

3d volumetric rendering idea in a few words

Three.js is used as some gateway to WebGL renderer. The current Three.js version does not support 3d textures, so we use tricky way to build 2d texture from initial 3d texture by linking 2d slices all together as a large tile map. This idea (with source codes) can be seen in project WebGL Volume Rendering.

Publications

Links to publications that contain med3web references

Project documentation

Introduction to the project can be loaded here: Application user interface documentation.

Demo app

Here you can find a demo app.

Getting started

Load project from git server:

git clone https://github.com/epam/med3web.git

Start operations in order to load all required Node.js packages:

cd med3web
npm install

Prerequisites

Node.js and Tools

Download link: NodeJS.

Version not below than v.6.10.3 is required.

After NodeJS installation please check that everything is installed correctly (for example, PATH ), using command:

node --version

Stdout should be v6.10.3 (or higher).

Project installation on local machine

Run command

npm install

to download all required for this project nodeJS packages

Build and run

All build commands performed via npm interface. Please, see commands details in package.json nfile.

Start app on local server

npm run start

Start app on local virtual server: localhost://3000

Lint project

npm run lint

You will see lint result

Perform auto-tests

npm run test

Run all auto - tests for project. *.test.js files will be used for test run

Create autodocumentation

npm run doc

See results in esdoc folder

Create app build for project deploy on server

npm run build

See results in build folder

Development notes

You can read more technical notes here if wish to deep inside tech details of the project

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