0
|
1 Stone of Orthanc
|
|
2 ================
|
|
3
|
|
4
|
|
5 General Information
|
|
6 -------------------
|
|
7
|
|
8 This repository contains the source code of the Stone of Orthanc.
|
|
9
|
|
10 Stone of Orthanc is a lightweight, cross-platform C++ framework for
|
|
11 the CPU-based rendering of medical images. It notably features support
|
|
12 for MPR (multiplanar reconstruction of volume images), PET-CT fusion,
|
|
13 and accurate physical world coordinates.
|
|
14
|
|
15 Stone of Orthanc comes bundled with its own software-based rendering
|
|
16 engine (based upon pixman). This engine will use CPU hardware
|
|
17 acceleration if available (notably SSE2, SSSE3, and NEON instruction
|
|
18 sets), but not the GPU. This makes Stone a highly versatile framework
|
9
|
19 that can run even on low-performance platforms. Note that Stone is
|
|
20 able to display DICOM series without having to entirely store them in
|
|
21 the RAM (i.e. frame by frame).
|
|
22
|
|
23 Thanks to its standalone rendering engine, Stone of Orthanc is also
|
|
24 compatible with any GUI framework (such as Qt, wxWidgets, MFC...). The
|
|
25 provided sample applications use the SDL framework.
|
0
|
26
|
9
|
27 Stone is conceived as a companion toolbox to the Orthanc VNA (vendor
|
|
28 neutral archive, i.e. DICOM server). As a consequence, Stone will
|
|
29 smoothly interface with Orthanc out of the box. Interestingly, Stone
|
|
30 does not contain any DICOM toolkit: It entirely relies on the REST API
|
|
31 of Orthanc to parse/decode DICOM images. However, thanks to the
|
|
32 object-oriented architecture of Stone, it is possible to avoid this
|
|
33 dependency upon Orthanc, e.g. to download DICOM datasets using
|
|
34 DICOMweb.
|
0
|
35
|
|
36
|
|
37 Comparison
|
|
38 ----------
|
|
39
|
|
40 Pay attention to the fact that Stone of Orthanc is a toolkit, and not
|
1
|
41 a fully-featured application for the visualization of medical images
|
|
42 (such as Horos/OsiriX or Ginkgo CADx). However, such applications
|
|
43 could be built on the top of Stone of Orthanc.
|
0
|
44
|
|
45 Stone of Orthanc is quite similar to two other well-known toolkits:
|
|
46
|
|
47 * Cornerstone, a client-side JavaScript toolkit to display medical
|
|
48 images in Web browsers, by Chris Hafey <chafey@gmail.com>:
|
|
49 https://github.com/chafey/cornerstone
|
|
50
|
|
51 Contrarily to Cornerstone, Stone of Orthanc can be embedded into
|
|
52 native, heavyweight applications.
|
|
53
|
|
54 * VTK, a C++ toolkit for scientific visualization, by Kitware:
|
|
55 http://www.vtk.org/
|
|
56
|
|
57 Contrarily to VTK, Stone of Orthanc is focused on CPU-based, 2D
|
|
58 rendering: The GPU will not be used.
|
|
59
|
|
60
|
|
61 Dependencies
|
|
62 ------------
|
|
63
|
|
64 Stone of Orthanc is based upon the following projects:
|
|
65
|
|
66 * Orthanc, a lightweight Vendor Neutral Archive (DICOM server):
|
|
67 http://www.orthanc-server.com/
|
|
68
|
|
69 * Cairo and pixman, a cross-platform 2D graphics library:
|
|
70 https://www.cairographics.org/
|
|
71
|
|
72 * Optionally, SDL, a cross-platform multimedia library:
|
|
73 https://www.libsdl.org/
|
|
74
|
|
75
|
|
76 Installation and usage
|
|
77 ----------------------
|
|
78
|
|
79 Build instructions are similar to that of Orthanc:
|
|
80 https://orthanc.chu.ulg.ac.be/book/faq/compiling.html
|
|
81
|
41
|
82 Usage details are available as part of the Orthanc Book:
|
|
83 http://book.orthanc-server.com/developers/stone.html
|
|
84
|
0
|
85 Stone of Orthanc comes with several sample applications in the
|
|
86 "Samples" folder. These samples use SDL.
|
|
87
|
|
88
|
|
89 Licensing
|
|
90 ---------
|
|
91
|
49
|
92 Stone of Orthanc is licensed under the AGPL license.
|
0
|
93
|
|
94 We also kindly ask scientific works and clinical studies that make
|
|
95 use of Orthanc to cite Orthanc in their associated publications.
|
|
96 Similarly, we ask open-source and closed-source products that make
|
|
97 use of Orthanc to warn us about this use. You can cite our work
|
|
98 using the following BibTeX entry:
|
|
99
|
|
100 @inproceedings{Jodogne:ISBI2013,
|
|
101 author = {Jodogne, S. and Bernard, C. and Devillers, M. and Lenaerts, E. and Coucke, P.},
|
|
102 title = {Orthanc -- {A} Lightweight, {REST}ful {DICOM} Server for Healthcare and Medical Research},
|
|
103 booktitle={Biomedical Imaging ({ISBI}), {IEEE} 10th International Symposium on},
|
|
104 year={2013},
|
|
105 pages={190-193},
|
|
106 ISSN={1945-7928},
|
|
107 month=apr,
|
|
108 url={http://ieeexplore.ieee.org/xpl/articleDetails.jsp?tp=&arnumber=6556444},
|
|
109 address={San Francisco, {CA}, {USA}}
|
|
110 }
|