Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

ImagingDataCommons/ohif-idc-mode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GCP Mode

This mode adds the following functionalities to your OHIF viewer fork:

  • Automatic load of the latest derived display set of active series (no need to double-click the derived display set (e.g. SRs, SEGs) thumbnail in the left panel to render a derived display set)

Adding the mode to your OHIF fork

  1. Update OHIF's app package.json file to include this mode as a dependency, pointing to a branch since this mode is not being published to NPM:
/** File: platform/app/package.json */

"dependencies": {
  "ohif-idc-mode": "https://github.com/ImagingDataCommons/ohif-idc-mode#main", /** You can use any valid branch name here (#main or #master or #your-branch) */
  ...
  1. Update OHIF's plugin file to load this mode:
/** File: platform/app/pluginConfig.json */

"modes": [
  ...
  {
    "packageName": "ohif-idc-mode",
    "version": "0.0.1" /** The version here does not matter since we are using a branch name to define this mode dependency instead of npm publishing */
  },
 ...

Releases

No releases published

Packages

No packages published