comparison Applications/StoneWebViewer/NOTES.txt @ 1715:1952162474c3

A few æsthetic changes in the text body
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 01 Dec 2020 08:31:16 +0100
parents 2931f5e15320
children 9a1f79d21a3f
comparison
equal deleted inserted replaced
1714:a878e807cd96 1715:1952162474c3
5 5
6 - The images are retrieved using DICOMweb. 6 - The images are retrieved using DICOMweb.
7 7
8 8
9 - In the Stone Web viewer, the individual instances are loaded on 9 - In the Stone Web viewer, the individual instances are loaded on
10 need, in order to reduce the use of the network bandwidth. This 10 an as-needed basis, in order to reduce the network bandwidth usage.
11 contrasts with the Osimis Web viewer that loads the entire images in 11 This contrasts with the Osimis Web viewer that loads the entire images
12 background. 12 in the background.
13 13
14 14
15 - Contrarily to the Osimis Web viewer, the Stone Web viewer doesn't 15 - Contrarily to the Osimis Web viewer, the Stone Web viewer does not
16 currently support annotations, and will not support Live Share. 16 currently support annotations, and will not support Live Share.
17 17
18 18
19 - The Stone Web viewer uses the DICOM identifiers. The Osimis Web 19 - The Stone Web viewer uses the DICOM identifiers, while the Osimis Web
20 viewer the Orthanc identifiers. 20 viewer uses the Orthanc identifiers.
21 https://book.orthanc-server.com/faq/orthanc-ids.html 21 https://book.orthanc-server.com/faq/orthanc-ids.html
22 22
23 In the Stone Web viewer, the studies are indexed by their "Study 23 In the Stone Web viewer, the studies are indexed by their "Study
24 Instance UID" tag (0020,000d). The series are indexed by their 24 Instance UID" tag (0020,000d). The series are indexed by their
25 "Series Instance UID" tag (0020,000e). To open a single series, 25 "Series Instance UID" tag (0020,000e). To open a single series,
69 In the Stone Web viewer, "selectedStudyIds" is replaced by the 69 In the Stone Web viewer, "selectedStudyIds" is replaced by the
70 "selectedStudies" GET argument, that is allowed to contain a 70 "selectedStudies" GET argument, that is allowed to contain a
71 comma-separated list of studies. 71 comma-separated list of studies.
72 72
73 To make a list of studies available, but display only one of those 73 To make a list of studies available, but display only one of those
74 studies when the viewer starts: 74 studies when the viewer starts, please use:
75 http://.../index.html?study=<StudyInstanceUID1>,<StudyInstanceUID2>,...&selectedStudies=<StudyInstanceUID1> 75 http://.../index.html?study=<StudyInstanceUID1>,<StudyInstanceUID2>,...&selectedStudies=<StudyInstanceUID1>
76 76
77 If the "selectedStudies" is not provided, then all the studies are 77 If the "selectedStudies" is not provided, then all the studies are
78 displayed at the startup. 78 displayed at the startup.
79 79