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
|
# sight::module::io::dicomweb
Contains services used to deal with PACS through **HTTP** protocol.
If you are looking for **DIMSE** protocol please see **sight::module::io::dimse**.
## Services
- **query_editor**: performs an HTTP query on a Pacs.
- **series_puller**: pulls DICOM series from a PACS (ex: Orthanc).
- **series_pusher**: pushes a DICOM series to a PACS (ex: Orthanc).
- **slice_index_dicom_puller_editor**: requests to change slice index or slice view on the pulled DICOM series.
## How to use it
### CMake
```cmake
add_dependencies(my_target module_io_dicomweb ...)
```
### XML
Please consult the [doxygen](https://sight.pages.ircad.fr/sight) of each service to learn more about its use in xml configurations.
|