How can I get to the “Select a DICOM store” view shown in the screenshot of this documentation?
I suppose there are a few ways to get to the “Select a DICOM store” view. Below are two:
- Click on the gear icon
And proceed to select a project, location and data set. - If you start with a partially configured DICOMweb data source (i.e. configured up to data set - see below for a snippet of a config file where the wadoUriRoot, qidoRoot, and wadoRoot are only configured up to the data set) in say the
config/google.js
configuration file, then when running the OHIF client, you will be automatically prompted for the DICOM store.
...
dataSources: [
{
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
sourceName: 'dicomweb',
configuration: {
friendlyName: 'dcmjs DICOMWeb Server',
name: 'GCP',
wadoUriRoot:
'https://healthcare.googleapis.com/v1/projects/ohif-cloud-healthcare/locations/us-east4/datasets/ohif-qa-dataset/',
qidoRoot:
'https://healthcare.googleapis.com/v1/projects/ohif-cloud-healthcare/locations/us-east4/datasets/ohif-qa-dataset/',
wadoRoot:
'https://healthcare.googleapis.com/v1/projects/ohif-cloud-healthcare/locations/us-east4/datasets/ohif-qa-dataset/',
qidoSupportsIncludeField: true,
imageRendering: 'wadors',
thumbnailRendering: 'wadors',
enableStudyLazyLoad: true,
supportsFuzzyMatching: true,
supportsWildcard: false,
dicomUploadEnabled: true,
omitQuotationForMultipartRequest: true,
configurationAPI: 'ohif.dataSourceConfigurationAPI.google',
},
},
...
Hi, i never see this gear in project. How I can see this ?
It can be seen when using the config/google.js
configuration.