Mercurial > hg > orthanc-stone
annotate TODO @ 1941:4ad58ca3909c
TODO
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 16 May 2022 16:23:35 +0200 |
parents | 69589c7fe58d |
children | 09de7321d3b9 |
rev | line source |
---|---|
1716 | 1 |
2 ====================== | |
3 == Stone Web viewer == | |
4 ====================== | |
5 | |
6 ------------ | |
7 Improvements | |
8 ------------ | |
9 | |
1830 | 10 * Save/load annotations as attachments of their parent series |
11 (including detection of collisions thanks to revisions). | |
12 https://book.orthanc-server.com/faq/features.html#metadata-attachments | |
13 | |
1847 | 14 * Internationalization and translations (i18n). Some possible libraries: |
1716 | 15 https://phrase.com/blog/posts/the-best-javascript-i18n-libraries/ |
16 | |
17 * Configurable keyboard shortcuts. See Osimis Web viewer: | |
18 https://bitbucket.org/osimis/osimis-webviewer-plugin/src/master/doc/default-configuration.json | |
19 | |
20 * Flip X/Y : Should change the affine transformation of the 2D scene, | |
21 not the texture. Flipping the texture makes the reference lines and | |
22 crosshair invalid. | |
23 | |
1730
af4a2d08549c
preparing for release
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1726
diff
changeset
|
24 * Handle mobile gestures. |
af4a2d08549c
preparing for release
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1726
diff
changeset
|
25 |
1847 | 26 * Display GSPS layers (Grayscale Softcopy Presentation State). |
27 | |
1930 | 28 * Use "ImagerPixelSpacing" (0018,1164) tag if "PixelSpacing" is missing |
29 | |
30 * Override which tags are displayed in the image information in the | |
31 top-left, top-right and bottom-right pannels. | |
32 | |
33 For reference, in the case of MRI, "Echo Time" (0018,0081), | |
34 "Repetition Time" (0018,0080), "Magnetic Field Strength (0018,0087) | |
35 and "Slice Thickness" (0018,0050) would be useful to have. | |
36 | |
37 https://groups.google.com/g/orthanc-users/c/_kDp_ieYTgI/m/KHBxpSSOCQAJ | |
38 | |
1941 | 39 * add a button (and/or a keyboard shortcut) to select the next series in the main viewport |
40 https://groups.google.com/g/orthanc-users/c/u_lH9aqKsdw/m/KQ7U9CkiAAAJ | |
1716 | 41 |
1867 | 42 ------------ |
43 Known issues | |
44 ------------ | |
45 | |
46 * When opening a CT with 700 slices, if you drop the thumbnail in the viewport | |
1939 | 47 before the studies/../metadata have been loaded, the series will never be displayed. |
48 https://groups.google.com/g/orthanc-users/c/04D4exKMVSA | |
1867 | 49 |
1925 | 50 * Compatibility with Google Chrome browser on iPad Air 4: |
51 https://groups.google.com/g/orthanc-users/c/7SgedbIiA2k/ | |
52 https://groups.google.com/g/orthanc-users/c/RfQJFgkOUYY/m/za7rkcLNBQAJ | |
53 | |
1940 | 54 * the authorization header ('token' query arg) is not included in the HTTP headers. |
55 Tested with https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/authorization-plugin-viewer-query-args/. | |
56 | |
1925 | 57 |
1830 | 58 ----------------- |
59 Code refactorings | |
60 ----------------- | |
61 | |
62 * Replace "ParsedDicomCache" by "Orthanc::ParsedDicomCache" (new in | |
63 Orthanc framework 1.9.0) | |
64 | |
1938 | 65 * Replace calls to /studies/.../series/.../metadata by calls to |
66 /instances?StudyInstanceUID=...&SeriesInstanceUID=...&includefield=...&includefield=... | |
67 to benefit from ExtraMainDicomTags stored in DB and avoid reading from disk | |
1830 | 68 |
1716 | 69 -------- |
70 Wishlist | |
71 -------- | |
72 | |
1719
9a1f79d21a3f
added buttons to go to the first and last frames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1717
diff
changeset
|
73 * Vertical "timeline" to see the position of the current frame in the |
9a1f79d21a3f
added buttons to go to the first and last frames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1717
diff
changeset
|
74 series, and to change the current frame by clicking on the timeline. |
9a1f79d21a3f
added buttons to go to the first and last frames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1717
diff
changeset
|
75 |
1863 | 76 * Display a pixel probe with the Hounsfield Unit. |
77 https://groups.google.com/g/orthanc-users/c/m7S0wbYYW5s/m/MBaxIQ_IAAAJ | |
78 | |
1716 | 79 * Display video files even if the Orthanc REST API is not available |
80 (using pure DICOMweb). This could possible be done using the | |
81 DICOMweb Bulk Data URI, and/or a dedicated JavaScript video player. | |
82 | |
83 * "Start the Viewer with a specific Dicom file and display the | |
84 specific images. For example I start the Viewer with dicomFile and | |
85 open slide1, slide4, slide8, slide12 ?" | |
86 https://groups.google.com/g/orthanc-users/c/6KSe0WEEfco/m/nOIl57EzAAAJ | |
87 | |
1717
391c798e4dae
fix for KNIX sample dataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1716
diff
changeset
|
88 * Configuration option related to the "DicomSource" class in order to |
391c798e4dae
fix for KNIX sample dataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1716
diff
changeset
|
89 systematically request server-side transcoding. |
391c798e4dae
fix for KNIX sample dataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1716
diff
changeset
|
90 |
1753 | 91 * Fully implement "Basic Image Review" profile from IHE: |
92 https://wiki.ihe.net/index.php/Basic_Image_Review | |
93 | |
1848 | 94 * Support hanging protocols (automatically adapt the layout given the |
95 type of modality to be displayed): | |
96 https://groups.google.com/g/orthanc-users/c/bGtK3q9ZUmg/m/gr8kCcVWCAAJ | |
97 | |
1867 | 98 * When opening the viewer, directly load the first series in the viewport |
99 (like the OsimisViewer). Whatchout the known issues wrt dropping a series | |
100 before the studies/../metadata have been loaded. | |
101 | |
1932 | 102 * Create secondary capture DICOM images with the annotations burned in: |
103 https://groups.google.com/g/orthanc-users/c/T3h-6dIjvww/m/sVtHxwT_AQAJ | |
104 | |
1933 | 105 * Configure the default layout (e.g. 1x2 instead of 1x1) and the |
106 default view of the left toolbox: | |
107 https://groups.google.com/g/orthanc-users/c/y2B_RIzegNc/m/H9MhY9y2AgAJ | |
108 | |
109 | |
1935 | 110 * Display the PatientName & ID in the page title such that it appears |
1934 | 111 in the browser tab name |
112 https://groups.google.com/g/orthanc-users/c/F7cK8axehfA/m/ku-CPsvbAQAJ | |
1716 | 113 |
1930 | 114 -------- |
115 Won't do | |
116 -------- | |
117 | |
118 * Debian packaging, which requires source-level build dependencies: | |
119 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=975069#22 | |
120 | |
121 => A solution for AMD64 architectures is to use the standalone | |
122 Debian repository that is provided by Sebastien Jodogne: | |
123 https://book.orthanc-server.com/users/cookbook.html#obtaining-binaries | |
124 | |
125 | |
126 | |
1716 | 127 ================================== |
128 == Stone of Orthanc C++ library == | |
129 ================================== | |
0 | 130 |
131 | |
132 ------- | |
133 General | |
134 ------- | |
135 | |
136 * Documentation | |
137 | |
138 | |
139 ------------- | |
140 Optimizations | |
141 ------------- | |
142 | |
1590 | 143 * Speedup RT-STRUCT projection in sagittal + coronal views |
144 * Speedup RT-STRUCT loading | |
1726
0257339b0884
new method ParseDicomFromWadoCommand::IsSameCommand()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1719
diff
changeset
|
145 * "ParseDicomFromOrthanc": new command |
0 | 146 |
147 | |
148 ----------------- | |
149 Platform-specific | |
150 ----------------- | |
151 | |
1716 | 152 * WebAssembly: Possible issue in "emscripten_set_timeout()" if the |
153 Oracle is destroyed while a sleep event is still being processed | |
154 (the callback payload would be invalid). This is not a problem as | |
155 long as the Oracle singleton is never destroyed. A cleaner solution | |
156 would be similar to "WebAssemblyViewport::CreateObjectCookie()". | |
157 | |
0 | 158 * Add precompiled headers for Microsoft Visual Studio |