Mercurial > hg > orthanc-stone
annotate TODO @ 1774:95ece40bb298
DicomVolumeImageReslicer and DicomVolumeImageMPRSlicer behave identically on axial
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 12 May 2021 17:43:51 +0200 |
parents | f19f69476d9d |
children | 1623146decea |
rev | line source |
---|---|
1716 | 1 |
2 ====================== | |
3 == Stone Web viewer == | |
4 ====================== | |
5 | |
1741 | 6 ----------------- |
7 Code refactorings | |
8 ----------------- | |
9 | |
10 * Replace "ParsedDicomCache" by "Orthanc::ParsedDicomCache" (new in | |
11 Orthanc framework 1.9.0) | |
12 | |
13 | |
1716 | 14 ------------ |
15 Improvements | |
16 ------------ | |
17 | |
18 * Internationalization (i18n). Some possible libraries: | |
19 https://phrase.com/blog/posts/the-best-javascript-i18n-libraries/ | |
20 | |
21 * Configurable keyboard shortcuts. See Osimis Web viewer: | |
22 https://bitbucket.org/osimis/osimis-webviewer-plugin/src/master/doc/default-configuration.json | |
23 | |
24 * Flip X/Y : Should change the affine transformation of the 2D scene, | |
25 not the texture. Flipping the texture makes the reference lines and | |
26 crosshair invalid. | |
27 | |
1730
af4a2d08549c
preparing for release
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1726
diff
changeset
|
28 * Handle mobile gestures. |
af4a2d08549c
preparing for release
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1726
diff
changeset
|
29 |
1716 | 30 |
31 -------- | |
32 Wishlist | |
33 -------- | |
34 | |
1719
9a1f79d21a3f
added buttons to go to the first and last frames
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1717
diff
changeset
|
35 * 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
|
36 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
|
37 |
1716 | 38 * Display video files even if the Orthanc REST API is not available |
39 (using pure DICOMweb). This could possible be done using the | |
40 DICOMweb Bulk Data URI, and/or a dedicated JavaScript video player. | |
41 | |
1717
391c798e4dae
fix for KNIX sample dataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1716
diff
changeset
|
42 * Debian packaging, which requires source-level build dependencies: |
391c798e4dae
fix for KNIX sample dataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1716
diff
changeset
|
43 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=975069#22 |
391c798e4dae
fix for KNIX sample dataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1716
diff
changeset
|
44 |
1716 | 45 * "Start the Viewer with a specific Dicom file and display the |
46 specific images. For example I start the Viewer with dicomFile and | |
47 open slide1, slide4, slide8, slide12 ?" | |
48 https://groups.google.com/g/orthanc-users/c/6KSe0WEEfco/m/nOIl57EzAAAJ | |
49 | |
1717
391c798e4dae
fix for KNIX sample dataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1716
diff
changeset
|
50 * 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
|
51 systematically request server-side transcoding. |
391c798e4dae
fix for KNIX sample dataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1716
diff
changeset
|
52 |
1753 | 53 * Fully implement "Basic Image Review" profile from IHE: |
54 https://wiki.ihe.net/index.php/Basic_Image_Review | |
55 | |
1716 | 56 |
57 | |
58 ================================== | |
59 == Stone of Orthanc C++ library == | |
60 ================================== | |
0 | 61 |
62 | |
63 ------- | |
64 General | |
65 ------- | |
66 | |
67 * Documentation | |
68 | |
69 | |
70 ------------- | |
71 Optimizations | |
72 ------------- | |
73 | |
1590 | 74 * Speedup RT-STRUCT projection in sagittal + coronal views |
75 * Speedup RT-STRUCT loading | |
1726
0257339b0884
new method ParseDicomFromWadoCommand::IsSameCommand()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1719
diff
changeset
|
76 * "ParseDicomFromOrthanc": new command |
0 | 77 |
78 | |
79 ----------------- | |
80 Platform-specific | |
81 ----------------- | |
82 | |
1716 | 83 * WebAssembly: Possible issue in "emscripten_set_timeout()" if the |
84 Oracle is destroyed while a sleep event is still being processed | |
85 (the callback payload would be invalid). This is not a problem as | |
86 long as the Oracle singleton is never destroyed. A cleaner solution | |
87 would be similar to "WebAssemblyViewport::CreateObjectCookie()". | |
88 | |
0 | 89 * Add precompiled headers for Microsoft Visual Studio |