OHIF Viewer official document study notes <1>

  • Preface

Open Medical Imaging Foundation (Open Health Imaging Fundation, OHIF) Viewer is a Web-based front-end open source medical imaging l browser. You can connect it to support DicomWeb the image archive , and API support proprietary formats. OHIF Veiwer extensions to increase support for 2D (slices) and 3D (three-dimensional) of DICOM image viewing, annotation and reporting.

OHIF Viewer: universal DICOM viewer (Live Demo)

OHIF intended to provide a simple generic DICOM Viewer, you can easily extend it for a specific purpose. If you can not find the extended viewer according to their own purposes, through our GitHub Issues contact us. We are actively seeking feedback on improving the integration and extension methods.

  • Start

The official release from Github address download .zip file

  • Configuration 

Node.js & NPM

Yarn

Yarn workspaces:

yarn config set workspaces-experimental true

Switch to the root directory of the local download programs, run the following command:

# Restore dependencies
yarn install

# Start local development server
yarn run dev

You should see the following output:

@ohif/viewer: i 「wds」: Project is running at http://localhost:3000/
@ohif/viewer: i 「wds」: webpack output is served from /
@ohif/viewer: i 「wds」: Content not from webpack is served from D:\code\ohif\Viewers\platform\viewer
@ohif/viewer: i 「wds」: 404s will fallback to /index.html

This application is hosted by the development server.

  • Remark

Official documents Address: https://docs.ohif.org/

Official Github Address: https://github.com/OHIF/Viewers

Guess you like

Origin www.cnblogs.com/jxblog/p/12109506.html