File: README.md

package info (click to toggle)
sight 25.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,180 kB
  • sloc: cpp: 289,476; xml: 17,257; ansic: 9,878; python: 1,379; sh: 144; makefile: 33
file content (38 lines) | stat: -rw-r--r-- 1,063 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# sight::io::dimse

Library containing DIcom Message Service Element (DIMSE) classes to read DICOM series from PACS.

## Classes:

### general

- **series_enquirer**: connects to PACS server and retrieves Series with C-GET commands.
- **series_retriever**: listens to connexions requests from PACS, accepts them and once the C-STORE request is received, 
the retriever will receive the Series.

### data

- **pacs_configuration**: defines a PACS configuration.

### exceptions

- **base**: defines Base exceptions.
- **negociate_association_failure**: defines association failure exceptions.
- **network_initialization_failure**: defines network initialization failure exceptions.
- **presentation_context_missing**: defines presentation context missing exceptions.
- **request_failure**: defines request failure exceptions.
- **request_failure**: defines tag missing exceptions.

### helper
- **series**: helps converting DICOM series into other formats. 

## How to use it

### CMake

```cmake

target_link_libraries( my_target <PUBLIC|PRIVATE> io_dimse)

```