2019-05-13 19:14:08 +02:00
|
|
|
window.config = {
|
|
|
|
|
routerBasename: '/',
|
2019-07-08 21:29:59 +02:00
|
|
|
showStudyList: true,
|
2021-05-28 20:32:48 +02:00
|
|
|
extensions: [],
|
|
|
|
|
modes: [],
|
2022-11-04 14:01:34 +01:00
|
|
|
// below flag is for performance reasons, but it might not work for all servers
|
2023-06-22 21:26:26 +02:00
|
|
|
|
2023-02-17 21:04:07 +01:00
|
|
|
showWarningMessageForCrossOrigin: true,
|
|
|
|
|
showCPUFallbackMessage: true,
|
2022-11-16 20:19:52 +01:00
|
|
|
showLoadingIndicator: true,
|
2023-04-01 04:21:16 +02:00
|
|
|
strictZSpacingForVolumeViewport: true,
|
2023-05-08 21:49:28 +02:00
|
|
|
defaultDataSourceName: 'dicomweb',
|
2021-05-28 20:32:48 +02:00
|
|
|
dataSources: [
|
|
|
|
|
{
|
2022-04-06 19:28:42 +02:00
|
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomweb',
|
2021-05-28 20:32:48 +02:00
|
|
|
sourceName: 'dicomweb',
|
|
|
|
|
configuration: {
|
2023-07-20 17:43:05 +02:00
|
|
|
friendlyName: 'Orthanc Server',
|
2019-05-13 19:14:08 +02:00
|
|
|
name: 'Orthanc',
|
|
|
|
|
wadoUriRoot: 'http://127.0.0.1/pacs/wado',
|
|
|
|
|
qidoRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
|
|
|
wadoRoot: 'http://127.0.0.1/pacs/dicom-web',
|
|
|
|
|
qidoSupportsIncludeField: false,
|
|
|
|
|
imageRendering: 'wadors',
|
|
|
|
|
thumbnailRendering: 'wadors',
|
2023-06-22 21:26:26 +02:00
|
|
|
omitQuotationForMultipartRequest: true,
|
2019-05-13 19:14:08 +02:00
|
|
|
},
|
2021-05-28 20:32:48 +02:00
|
|
|
},
|
2023-04-01 04:21:16 +02:00
|
|
|
{
|
|
|
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomjson',
|
|
|
|
|
sourceName: 'dicomjson',
|
|
|
|
|
configuration: {
|
2023-07-20 17:43:05 +02:00
|
|
|
friendlyName: 'dicom json',
|
2023-04-01 04:21:16 +02:00
|
|
|
name: 'json',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
namespace: '@ohif/extension-default.dataSourcesModule.dicomlocal',
|
|
|
|
|
sourceName: 'dicomlocal',
|
2023-07-20 17:43:05 +02:00
|
|
|
configuration: {
|
|
|
|
|
friendlyName: 'dicom local',
|
|
|
|
|
},
|
2023-04-01 04:21:16 +02:00
|
|
|
},
|
2021-05-28 20:32:48 +02:00
|
|
|
],
|
2019-09-09 21:49:12 +02:00
|
|
|
};
|