comparison Applications/StoneWebViewer/NOTES.txt @ 1691:4a49de03a419

porting the "pickableStudyIds" feature of Osimis Web viewer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Nov 2020 17:54:04 +0100
parents
children e787b52d025f
comparison
equal deleted inserted replaced
1690:f7b178ae7c08 1691:4a49de03a419
1
2
3 Differences with Osimis Web viewer
4 ==================================
5
6 - The images are retrieved using DICOMweb.
7
8 - The Stone Web viewer uses the DICOM identifiers. The Osimis Web
9 viewer the Orthanc identifiers.
10 https://book.orthanc-server.com/faq/orthanc-ids.html
11
12 In the Stone Web viewer, the studies are indexed by their "Study
13 Instance UID" tag (0020,000d). The series are indexed by their
14 "Series Instance UID" tag (0020,000e). To open a single series,
15 the parent study must be provided.
16
17 To open a single study:
18 http://.../index.html?study=<StudyInstanceUID>
19
20 To open a single series:
21 http://.../index.html?study=<StudyInstanceUID>&series=<SeriesInstanceUID>
22
23 - The "pickableStudyIds" parameter in the URL (to specify a list of
24 studies to be displayed) is replaced by the single "study" GET
25 argument, that is allowed to contain a comma-separated list of
26 studies. The "series" parameter is ignored in this case.
27
28 To open a list of studies:
29 http://.../index.html?study=<StudyInstanceUID1>,<StudyInstanceUID2>,...
30