Mercurial > hg > orthanc-book
annotate Sphinx/source/faq/supported-images.rst @ 258:a073419272c7
typo
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 26 Jun 2019 22:41:33 +0200 |
parents | 008091376e7a |
children | 011b01ccf52d |
rev | line source |
---|---|
0 | 1 .. _supported-images: |
2 | |
3 Supported DICOM images | |
4 ====================== | |
5 | |
6 Orthanc can **receive/store/send** any kind of standard DICOM files | |
7 (cf. the `DICOM conformance statement | |
8 <https://bitbucket.org/sjodogne/orthanc/src/default/Resources/DicomConformanceStatement.txt>`__). | |
153 | 9 Note that the ``UnknownSopClassAccepted`` :ref:`configuration option |
10 <configuration>` can be set to `true` if interfacing with modalities | |
11 that are producing non-standard SOP classes. | |
0 | 12 |
153 | 13 Orthanc Explorer can **display the raw DICOM tags** of any such DICOM |
14 file (including notably DICOM-SR structured reports). | |
15 | |
16 However, the core engine of Orthanc is not able to **render all of the | |
17 DICOM files as PNG images**. An image that Orthanc cannot decode is | |
18 displayed as "Unsupported" by clicking on the "Preview" buttons of | |
19 Orthanc Explorer. Currently, the core engine of Orthanc can decode: | |
0 | 20 |
21 * uncompressed (raw) DICOM files, | |
22 * JPEG DICOM files, and | |
23 * JPEG-LS DICOM files. | |
24 | |
25 The supported photometric interpretations are: | |
26 | |
27 * RGB, | |
28 * Grayscale2. | |
29 | |
30 The Orthanc core supports from 8bpp to 16bpp depth, with integer | |
31 values. Multiframe (notably cine), uncompressed DICOM instances can | |
32 also be displayed from Orthanc Explorer. | |
33 | |
34 Other type of encodings are available in the `Web viewer plugin | |
35 <http://www.orthanc-server.com/static.php?page=web-viewer>`__, that | |
36 mostly supports whatever is supported by the well-known `GDCM toolkit | |
25 | 37 <https://sourceforge.net/projects/gdcm/>`__ by Mathieu Malaterre. Note |
62
4b332c3d7824
moving TODO out of Trello
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
38 however that multiframe (notably cine) DICOM instances are currently |
4b332c3d7824
moving TODO out of Trello
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
39 not supported by the Web viewer plugin. |
4b332c3d7824
moving TODO out of Trello
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
40 |
4b332c3d7824
moving TODO out of Trello
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
41 Finally, consider having a look at the section in the Orthanc Book |
4b332c3d7824
moving TODO out of Trello
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
42 about the :ref:`compatible DICOM viewers <viewers>`. |
4b332c3d7824
moving TODO out of Trello
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
25
diff
changeset
|
43 |