The GCP Extension enhances the OHIF viewer, enabling seamless integration with Google Cloud Platform healthcare services for loading and merging imaging studies directly from GCP.
http://localhost:3000/viewer?StudyInstanceUID=123&gcp=projects/your-project/locations/us-west1/datasets/annotations/dicomStores/annotations
In the OHIF package.json
file, include ohif-gcp-extension
as a dependency. Since it’s not published to NPM, specify the GitHub repository URL and branch name.
/** File: platform/app/package.json */
"dependencies": {
"ohif-gcp-extension": "https://github.com/ImagingDataCommons/ohif-gcp-extension#main",
...
}
/** File: platform/app/pluginConfig.json */
"extensions": [
...
{
"packageName": "ohif-gcp-extension"
},
...