Skip to content

4. px listen

Rudolph Pienaar edited this page Sep 27, 2019 · 5 revisions

px-listen

Overview

px-listen is a wrapper around dcmtk storescp. It should be connected to a daemon/service in order to act as a DICOM_Listener. In the containerized version of this repository, all the necessary listening infrastructure is available already in the container and might only need some post configuration.

storescp listens on a specific TCP/IP port for incoming association
requests from a Storage Service Class User (SCU).
 
storescp can receive both DICOM images and other DICOM composite objects.
-- DCMTK, about storescp.

CLI use

   # receive DICOM data Orthanc PACS server
   # tmp directory to store the data before ordering: /tmp
   # log directory to log all incoming/processing data : /incoming/log
   # data directory to store ordered data : /incoming/data
   # storescp executable: /usr/local/bin/storescp
   px-listen -t /tmp                           \
             -l /incoming/log                  \
             -d /incoming/data                 \
             --executable /usr/bin/storescp
Clone this wiki locally