The GCP Mode enhances the OHIF viewer, providing specialized functionality for integrating Google Cloud Platform healthcare services.
- Load Studies via GCP URLs: Enables loading studies directly from GCP healthcare URLs.
- Example URL format:
http://localhost:3000/projects/project-x/locations/us/datasets/some-dataset/dicomStores/test-samples/study/1.3.6.1.4.1.123.5.2.1.123.123.123
- Example URL format:
- Automatic Derived Display Set Loading: Automatically renders the latest derived display set for an active series (e.g., SRs, SEGs) without needing to select these thumbnails manually.
Update package.json
to include ohif-gcp-mode
as a dependency. Since this mode is not published to NPM, specify the GitHub repository and branch name.
/** File: platform/app/package.json */
"dependencies": {
"ohif-gcp-mode": "https://github.com/ImagingDataCommons/ohif-gcp-mode#main",
...
}
/** File: platform/app/pluginConfig.json */
"modes": [
...
{
"packageName": "ohif-gcp-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 */
},
...