SlideShare ist ein Scribd-Unternehmen logo
1 von 10
Downloaden Sie, um offline zu lesen
dcm4che Media and Network
                            Applications
                            by Thomas Hacklaender, MD, MSc (hacklaender@iftm.de)


                                                 covers dcm4che version 1.0.3




    This manual describes how to use the sample applications of the dcm4che library as PACS
                        communication tools for the ImageJ framework.




Table of Contents

1   Getting Started ........................................................................................................................ 2
  1.1    Installation ....................................................................................................................... 2
2   Example Scenario ................................................................................................................... 4
3   Applications ............................................................................................................................. 6
  3.1    General ............................................................................................................................ 6
  3.2    dcmdir.............................................................................................................................. 6
  3.3    dcmrcv............................................................................................................................. 7
  3.4    dcmsnd............................................................................................................................ 8
4   References ............................................................................................................................ 10




Document Version: 22 August 2002                                                                                                              1
1 Getting Started


1.1         Installation

Install ImageJ and the “DICOM Import and Export Plugins” as described in the accompanying
manual. The installation directory will be referenced in the following as <IMAGEJ_HOME>.
The standard installation leads to a Java 1.4 JRE and a subdirectory <IMAGEJ_HOME>/lib
with the following library files:


File/Directory Description
dcm4che.jar        The dcm4che library.
log4j.jar          The logger used by dcm4che.
links.txt          A list of links to obtain the source code and other information to the libraries.



Download the media and network support archive. Unzip the medianet.zip file to
<IMAGEJ_HOME>. You will receive the new directory medianet including the following files:


File/Directory        Description
dcmdir_a.bat          A dummy batch file to add file references.
dcmdir_c.bat          A dummy batch file to create a file-set.
dcmdir_x.bat          A dummy batch file to remove file references.
dcmdir_z.bat          A dummy batch file to compact a file-set.
dcmdir.cfg            The configuration file containing the default properties of dcmdir.
dcmdir.jar            The dcmdir application.
dcmrcv_file.bat       A dummy batch file to start the server. Stores objects as files in ./tmp.
dcmrcv_dir.bat        A dummy batch file to start the server. Stores objects in file-set ./tmp/DICOMDIR.
dcmrcv.cfg            Configuration file containing the default properties of dcmrcv.
dcmrcv.jar            The dcmrcv application.
dcmrcv.key            A file containing security keys for dcmrcv.
dcmsnd.bat            A dummy batch file to send a file to a server.
dcmsnd_echo.bat A dummy batch file to test the connection with DICOM Echo.
dcmsnd.cfg            Configuration file containing the default properties of dcmsnd.
dcmsnd.jar            The dcmsnd application.
dcmsnd.key            A file containing security keys for dcmsnd.
/doc                  The directory containing documentation files:
                      manual.pdf – This manual as PDF fille.
                      manual.rtf – This manual as Rich Text File.
getopt.jar            A library for command-line options used by all applications.
log4j.properties      Property file for the log4j logger used by dcm4che.
SMPTE                 A sample DICOM image.
/tmp                  A direc tory for temporary files used by the dummy batch files:
                      SMPTE2 - A sample DICOM image.




Document Version: 22 August 2002                                                                           2
Document Version: 22 August 2002   3
2 Example Scenario

In the DICOM network communication context each node is defined by three information usually
provided by the manufacturer:
    1. The application entity title (AET)
    2. The internet protocol (IP) address
    3. The port number
To exchange information between two nodes, both must know from each other. Therefore each
node has a list of possible communication partners. Typically you have to ask your equipment
manufacturer to enter the three information of a new DICOM node to this list.
In the following it is explained how to send an image from a modality (e.g. MR imager) to a
workstation, postprocess the image using ImageJ and store the result into a PACS archive. The
workflow is shown on the diagram on the next page.


          Application Entity Title IP Address Port Number    Patient   Patient Study Series Instance
                                                               ID      Name      ID  Number Number
Modality SCANNER                 192.168.0.5 5104
Archive   ARCHIVE                192.168.0.6 7120
dcmrcv    DCMRCV                 192.168.0.7 104
dcmsnd DCMSND                    192.168.0.8 104
Image                                                       1234567890 Test   29    17      1



First we have to create an empty DICOMDIR in the file-set. In the example the DICOM file-set
should be stored in the directory ./tmp:
java -jar dcmdir.jar -c ./tmp/DICOMDIR

Next the image server has to be started:
java -jar dcmrcv.jar --dest=./tmp/DICOMDIR 104

Now the image may be send from the modality to the image server. The image is stored in the
file-set at ./tmp/TEST/29/17/1 and an entry in DICOMDIR is made.
Start ImageJ and import the received image using the Dcm_Import plugin. Use the DICOMDIR-
Tab to select the image.
Process the image.
Export the processed image to the file-set using the Dcm_export plugin. Use the DICOMDIR-
Tab to select the file-set as destination.
Send the image to the archive:
java -jar dcmsnd.jar dicom://ARCHIVE:DCMSND@192.168.0.6:7120 ./tmp/TEST/29/17/1

Delete the image (and all other images of the patient) in the file-set:
java -jar dcmdir.jar -X ./tmp/DICOMDIR --pat 1234567890 ./tmp
java -jar dcmdir.jar -z ./tmp/DICOMDIR




Document Version: 22 August 2002                                                                   4
Modality                                                   Archive
      Application Entity Title: <mod_AET>                        Application Entity Title: <arc_AET>
      IP Address:               <mod_IP>                         IP Address:               <arc_IP>
      Port Number:              <mod_PORT>                       Port Number:              <arc_PORT>


           Image
            <patient_ID>
            <study_instance_UID>
            <series_instance_UID>

            <PatientName>
            <StudyID>
            <SeriesNumber>
            <ImageInstanceNumber>
            (i.e. Image Number)




                                             Workstation


      dcmrcv                                                     dcmsnd
      Application Entity Title: <rcv_AET>                        Application Entity Title: <snd_AET>
      IP Address:               <rcv_IP>                         IP Address:               <snd_IP>
      Port Number:              <rcv_PORT>                       Port Number:              <snd_PORT>




                                              DICOMDIR
                                              Path: <dir_path>




      dcmdir                                                             ImageJ
                                              Standard
      Commands:                               CD-Writer                  Plugins:
      ‱ Create                                Software                   ‱ Dcm_Import
      ‱ Add                                                              ‱ Dcm_Export
      ‱ Remove                                                           ‱ Dcm_Inspector
      ‱ Purge
      ‱ Compact




Document Version: 22 August 2002                                                                        5
3 Applications


3.1   General

In the following files and directories may be referenced either by an absolute or a relative refer-
ence. A relative reference is relative to the current directory and starts with the string ./ . The
parent directory is referenced by ../ . The path delimiter is independent of the operating sys-
tem the character / . References not starting with a . are absolute. On systems running under a
Windows OS these references start with the drive letter, e.g. C:/tmp/foo.dcm . On Linux sys-
tems they start with a /, e.g. /tmp/foo.dcm .




3.2   dcmdir

This application processes DICOM file-sets, as described in part 10 of the DICOM standard.
Keep in mind, that DICOM restricts possible file-names: A file-set must contain one file, with
name DICOMDIR, that contains information concerning the file-set. You can only add files to a
file-set, which are stored in the directory of the DICOMDIR file or in sub-directories up to eight
levels. The name of such files and directories may only be 8 characters long and the characters
must be capital letters or numbers. The character ‘.’ is not allowed.
Using standard CD-writing software it is possible to create a DICOM-CD. Just write the whole
contents of the directory containing the DICOMDIR file and all its subdirectories to a CD.
Examples:
java -jar dcmdir.jar -c ./tmp/DICOMDIR

Creates an empty file-set in the subdirectory tmp.


java -jar dcmdir.jar -a ./tmp/DICOMDIR ./tmp/SMPTE2

Adds the existing DICOM object ./tmp/SMPTE2 to the existing file-set ./tmp/DICOMDIR .


java -jar dcmdir.jar -x ./tmp/DICOMDIR --pat 1234567890 ./tmp

Marks in the file-set ./tmp/DICOMDIR all entries as “not in use”, if the referenced files are in
directory ./tmp or its subdirectories and have a patient ID equal to 1234567890.


java -jar dcmdir.jar -P ./tmp/DICOMDIR

Marks in the file-set ./tmp/DICOMDIR all entries as “not in use”, if the referenced files are not
physical present at the referenced position in the filesystem.


java -jar dcmdir.jar -z ./tmp/DICOMDIR

Removes all entries in the file-set ./tmp/DICOMDIR which are marked as “not in use”.




Document Version: 22 August 2002                                                                    6
Usage:

java -jar dcmdir.jar -{tcaxXzP} dir-file [OPTION]... [FILE]...


Command:
  -c dir-file create new DICOMDIR file with references to files...
  -a dir-file add file references to existing DICOMDIR file
  -x dir-file remove record(s) from existing DICOMDIR, with specified
    --pat    id    Patient ID
    --study uid Study Instance UID
    --series uid Series Instance UID
    --sop    uid SOP Instance UID
    [FILE]... referenced files
  -X dir-file same as -x dir-file, but also deletes referenced files
  -P dir-file purge records from existing DICOMDIR file, with referenced
                files do not exist anymore
  -z dir-file compact existing DICOMDIR file by removing inactive records


Options (override presets defined in resource dcmdir.cfg):

 --id      id              defines File-set ID of created DICOMDIR file
 --uid     uid             defines SOP Instance UID of created DICOMDIR file
 --readme readme-file      add README file reference to created DICOMDIR file
 --readme-charset code     specifies character set used in README file
 --grouplen                encode with (gggg,0000) group length attributes
 --seqlen                  encode sequence attributes with explicit length
 --itemlen                 encode sequence items with explicit length
 --onlyInUse               hide inactive records in content list
 --maxlen line-len         maximal line length in listing; default=79
 --vallen val-len          displayed value length in listing; default=64
 --help                      display this help and exit
 --version                   output version information and exit



3.3   dcmrcv

This application implements a DICOM server listening on PORT. It acts as a Storage SCP. The
received images are stored to the local file-system or in a DICOM file-set, depending on the
dest option. If the destination is a file-set, the received objects are stored in subdirectories of
the file-set directory. The names of the subdirectories are derived from the received object: Pa-
tientName, StudyID and SeriesNumber. The name of the file the object is stored is the In-
stanceNumber. This behavior may be configured by the fs-file-id option.
Example:
java -jar dcmrcv.jar --dest=./tmp 104

Starts the server, listening on port 104. The received DICOM objects are stored as plain files in
the subdirectory tmp.

Usage:

java -jar dcmrcv.jar [OPTION]... PORT


Options (override presets defined in resource dcmrcv.cfg):

--called-aets=AET1,..     only association requests with matching called and
--calling-aets=AET1,..    calling AET will be accepted
--max-pdu-len=LEN         set maximal length of receiving PDUs [default=16352]
--max-op-invoked=NUM      set maximal number of invoked operations with
                          outstanding response



Document Version: 22 August 2002                                                                      7
--rsp-delay=SEC        define additional delay of response
                       (useful for testing async mode)
--dest=DEST            define storage destination for received objects,
                       if DEST specifies a DICOMDIR file path (=last
                       component = "DICOMDIR"), the received objects will
                       be stored as DICOM File-set, further specified by
  --fs-id=NAME           the File-set Identifier [default=<none>],
  --fs-uid=UID           the File-set SOP Instance UID [default=<auto>],
  --fs-file-id=TAG_PATH specifies schema for generated file IDs [default=
                         StudyDate,StudyID,SeriesNumber,InstanceNumber],
  --fs-lazy-update       defer update of DICOMDIR at association release,
                         instead immedately at each object receipt.
  --set=TAG:VAL          Replace value of specified attribute with
                         specified value in received object
                         (e.g.: --set=PatientName:anonymous).
--buf-len=LEN          set length byte buffer, used to store data to file
--tls=CIPHERSUITE1,.. accept TLS connection with specified Cipher Suites
                       eg.: SSL_RSA_WITH_NULL_SHA,
                            SSL_RSA_WITH_3DES_EDE_CBC_SHA
--tls-key=KEYSTORE     get key from specified resource [default:dcmrcv.key]
--tls-key-passwd=PASS password for keystore and key specified by --tls-key
                       [default: dcm4che]
--tls-cacerts=KEYSTORE read trusted CA Certificats from specified resource
                       [default:cacerts]
--tls-cacerts-passwd=PASS password for keystore specified by --tls-cacerts
                       [default: dcm4che]
--help     display this help and exit
--version output version information and exit




3.4    dcmsnd

This application send DICOM objects to an Storage SCP, e.g. an archive. It acts as a Storage
SCU. The objects are read from the local file-system and are send to an Storage SCP which is
defined by URL. FILE may be the name of a single file, a list of files separated by whitespaces
or the name of a directory. In the later case all files in the directory and all subdirectories are
send. If FILE is omitted, the connection to the remote node will be verified by DICOM Echo.
Examples:
java -jar dcmsnd.jar dicom://DCMRCV:DCMSND@localhost:104 ./SMPTE

Opens association to local server, listening on port 104, with calling application entity title
DCMSND and called application entity title DCMRCV. Sends the DICOM file ./SMPTE to the
server.
java -jar dcmsnd.jar dicom://DCMRCV:DCMSND@localhost:104

Opens association to local server, listening on port 104, with calling application entity title
DCMSND and called application entity title DCMRCV. Verifies the connection with DICOM Echo.

Usage:

java -jar dcmsnd.jar [OPTION]... URL [FILE]...


Url:

dicom://CALLED[:CALLING]@HOST[:PORT]
  CALLED     Called AET in association request
  CALLING    Calling AET in association request [default=ANONYMOUS]



Document Version: 22 August 2002                                                                      8
HOST       Name or IP address of host, where the server is running
  PORT       TCP port address, on which the server is listing for
             incoming TCP Transport Connection Indication [default=104]


Options (override presets defined in resource dcmsnd.cfg):

--prior-high           HIGH priority of storage requests [default=NORMAL]
--prior-low            LOW priority of storage requests [default=NORMAL]
--max-pdu-len=LEN      set maximal length of receiving PDUs [default=16352]
--max-op-invoked=NUM   set maximal number of invoked operations with
                       outstanding response [default=0 -> unlimited]
--max-pdu-len=LEN      maximal length of receiving PDUs [default=16352]
--buf-len=LEN          byte buffer length, used to store data to file
                       [default=2048]
--repeat-dimse=NUM     Number of times to repeat single request [default=1]
--repeat-assoc=NUM     Number of times to repeat whole operation [default=1]
--buf-len=LEN          set length byte buffer, used to store data to file
--set=TAG:VAL          Replace value of specified attribute with
                       specified value in transmitted object
                       (e.g.: --set=PatientName:anonymous).
--tls=CIPHERSUITE1,.. accept TLS connection with specified Cipher Suites
                       eg.: SSL_RSA_WITH_NULL_SHA,
                            SSL_RSA_WITH_3DES_EDE_CBC_SHA
--tls-key=KEYSTORE     get key from specified resource [default:dcmsnd.key]
--tls-key-passwd=PASS password for keystore and key specified by --tls-key
                       [default: dcm4che]
--tls-cacerts=KEYSTORE read trusted CA Certificats from specified resource
                       [default:cacerts]
--tls-cacerts-passwd=PASS password for keystore specified by --tls-cacerts
                       [default: dcm4che]
--poll-dir=DIR         Poll the specified directory for DICOM files - e.g.
                       received by application dcmrcv - and forward them
                       to the remote DICOM node. [default: <none>]
--poll-period=PERIOD   Poll period in s. The default is 5s.
--poll-retry-open=TIME Retry open connection to remote host with specified
                       time interval. The default is 60s.
--poll-delta-last-modified=TIME Only consider files, which modification time
                       differs with the current time more than the specified
                       value. The default is 3s.
--poll-done-dir=DIR    Moves sent files to the specified directory, instead of
                       removing it from poll-dir.
--help     display this help and exit
--version output version information and exit




Document Version: 22 August 2002                                                 9
4 References

The ImageJ framework: http://rsb.info.nih.gov/ij/
The dcm4che project homepage: http://sourceforge.net/projects/dcm4che/
The DICOM normative text: http://www.dclunie.com/




Document Version: 22 August 2002                                         10

Weitere Àhnliche Inhalte

Ähnlich wie Medianet manual

Android Logging System
Android Logging SystemAndroid Logging System
Android Logging SystemWilliam Lee
 
Conquest for dummies: how to setup a pacs server
Conquest for dummies: how to setup a pacs serverConquest for dummies: how to setup a pacs server
Conquest for dummies: how to setup a pacs serverBogazici University
 
Null mumbai-Android-Insecure-Data-Storage-Exploitation
Null mumbai-Android-Insecure-Data-Storage-ExploitationNull mumbai-Android-Insecure-Data-Storage-Exploitation
Null mumbai-Android-Insecure-Data-Storage-ExploitationNitesh Malviya
 
Readme
ReadmeReadme
Readmerec2006
 
Introduction to directshow II
Introduction to directshow IIIntroduction to directshow II
Introduction to directshow IIYoss Cohen
 
Q4.11: Porting Android to new Platforms
Q4.11: Porting Android to new PlatformsQ4.11: Porting Android to new Platforms
Q4.11: Porting Android to new PlatformsLinaro
 
Manish Chasta - Securing Android Applications
Manish Chasta - Securing Android ApplicationsManish Chasta - Securing Android Applications
Manish Chasta - Securing Android ApplicationsPositive Hack Days
 
Radiomic Features.pdf
Radiomic Features.pdfRadiomic Features.pdf
Radiomic Features.pdfLallHussain
 
Android NĂąng cao-BĂ i 9-Debug in Android Application Development
Android NĂąng cao-BĂ i 9-Debug in Android Application Development Android NĂąng cao-BĂ i 9-Debug in Android Application Development
Android NĂąng cao-BĂ i 9-Debug in Android Application Development Phuoc Nguyen
 
IMAGE CAPTURE, PROCESSING AND TRANSFER VIA ETHERNET UNDER CONTROL OF MATLAB G...
IMAGE CAPTURE, PROCESSING AND TRANSFER VIA ETHERNET UNDER CONTROL OF MATLAB G...IMAGE CAPTURE, PROCESSING AND TRANSFER VIA ETHERNET UNDER CONTROL OF MATLAB G...
IMAGE CAPTURE, PROCESSING AND TRANSFER VIA ETHERNET UNDER CONTROL OF MATLAB G...Christopher Diamantopoulos
 
Android cameraoverview
Android cameraoverviewAndroid cameraoverview
Android cameraoverviewMadhu Selvarangam
 
Android tools for testers
Android tools for testersAndroid tools for testers
Android tools for testersMaksim Kovalev
 
Crash dump analysis - experience sharing
Crash dump analysis - experience sharingCrash dump analysis - experience sharing
Crash dump analysis - experience sharingJames Hsieh
 
Deployment Automation with Docker
Deployment Automation with DockerDeployment Automation with Docker
Deployment Automation with DockerEgor Pushkin
 
Ese 2008 RTSC Draft1
Ese 2008 RTSC Draft1Ese 2008 RTSC Draft1
Ese 2008 RTSC Draft1drusso
 
Android chapter02-setup1-sdk
Android chapter02-setup1-sdkAndroid chapter02-setup1-sdk
Android chapter02-setup1-sdkTran Le Hoan
 

Ähnlich wie Medianet manual (20)

ABCs of docker
ABCs of dockerABCs of docker
ABCs of docker
 
Android Logging System
Android Logging SystemAndroid Logging System
Android Logging System
 
STM -32
STM -32STM -32
STM -32
 
learning STM -32
learning STM -32 learning STM -32
learning STM -32
 
Conquest for dummies: how to setup a pacs server
Conquest for dummies: how to setup a pacs serverConquest for dummies: how to setup a pacs server
Conquest for dummies: how to setup a pacs server
 
Null mumbai-Android-Insecure-Data-Storage-Exploitation
Null mumbai-Android-Insecure-Data-Storage-ExploitationNull mumbai-Android-Insecure-Data-Storage-Exploitation
Null mumbai-Android-Insecure-Data-Storage-Exploitation
 
Readme
ReadmeReadme
Readme
 
Session 2 beccse
Session 2 beccseSession 2 beccse
Session 2 beccse
 
Introduction to directshow II
Introduction to directshow IIIntroduction to directshow II
Introduction to directshow II
 
Q4.11: Porting Android to new Platforms
Q4.11: Porting Android to new PlatformsQ4.11: Porting Android to new Platforms
Q4.11: Porting Android to new Platforms
 
Manish Chasta - Securing Android Applications
Manish Chasta - Securing Android ApplicationsManish Chasta - Securing Android Applications
Manish Chasta - Securing Android Applications
 
Radiomic Features.pdf
Radiomic Features.pdfRadiomic Features.pdf
Radiomic Features.pdf
 
Android NĂąng cao-BĂ i 9-Debug in Android Application Development
Android NĂąng cao-BĂ i 9-Debug in Android Application Development Android NĂąng cao-BĂ i 9-Debug in Android Application Development
Android NĂąng cao-BĂ i 9-Debug in Android Application Development
 
IMAGE CAPTURE, PROCESSING AND TRANSFER VIA ETHERNET UNDER CONTROL OF MATLAB G...
IMAGE CAPTURE, PROCESSING AND TRANSFER VIA ETHERNET UNDER CONTROL OF MATLAB G...IMAGE CAPTURE, PROCESSING AND TRANSFER VIA ETHERNET UNDER CONTROL OF MATLAB G...
IMAGE CAPTURE, PROCESSING AND TRANSFER VIA ETHERNET UNDER CONTROL OF MATLAB G...
 
Android cameraoverview
Android cameraoverviewAndroid cameraoverview
Android cameraoverview
 
Android tools for testers
Android tools for testersAndroid tools for testers
Android tools for testers
 
Crash dump analysis - experience sharing
Crash dump analysis - experience sharingCrash dump analysis - experience sharing
Crash dump analysis - experience sharing
 
Deployment Automation with Docker
Deployment Automation with DockerDeployment Automation with Docker
Deployment Automation with Docker
 
Ese 2008 RTSC Draft1
Ese 2008 RTSC Draft1Ese 2008 RTSC Draft1
Ese 2008 RTSC Draft1
 
Android chapter02-setup1-sdk
Android chapter02-setup1-sdkAndroid chapter02-setup1-sdk
Android chapter02-setup1-sdk
 

KĂŒrzlich hochgeladen

9873777170 Full Enjoy @24/7 Call Girls In North Avenue Delhi Ncr
9873777170 Full Enjoy @24/7 Call Girls In North Avenue Delhi Ncr9873777170 Full Enjoy @24/7 Call Girls In North Avenue Delhi Ncr
9873777170 Full Enjoy @24/7 Call Girls In North Avenue Delhi NcrDelhi Call Girls
 
High Profile Call Girls Jaipur Vani 8445551418 Independent Escort Service Jaipur
High Profile Call Girls Jaipur Vani 8445551418 Independent Escort Service JaipurHigh Profile Call Girls Jaipur Vani 8445551418 Independent Escort Service Jaipur
High Profile Call Girls Jaipur Vani 8445551418 Independent Escort Service Jaipurparulsinha
 
VIP Call Girls Mumbai Arpita 9910780858 Independent Escort Service Mumbai
VIP Call Girls Mumbai Arpita 9910780858 Independent Escort Service MumbaiVIP Call Girls Mumbai Arpita 9910780858 Independent Escort Service Mumbai
VIP Call Girls Mumbai Arpita 9910780858 Independent Escort Service Mumbaisonalikaur4
 
Call Girls Thane Just Call 9910780858 Get High Class Call Girls Service
Call Girls Thane Just Call 9910780858 Get High Class Call Girls ServiceCall Girls Thane Just Call 9910780858 Get High Class Call Girls Service
Call Girls Thane Just Call 9910780858 Get High Class Call Girls Servicesonalikaur4
 
Air-Hostess Call Girls Madambakkam - Phone No 7001305949 For Ultimate Sexual ...
Air-Hostess Call Girls Madambakkam - Phone No 7001305949 For Ultimate Sexual ...Air-Hostess Call Girls Madambakkam - Phone No 7001305949 For Ultimate Sexual ...
Air-Hostess Call Girls Madambakkam - Phone No 7001305949 For Ultimate Sexual ...Ahmedabad Escorts
 
call girls in Connaught Place DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service ...
call girls in Connaught Place  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service ...call girls in Connaught Place  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service ...
call girls in Connaught Place DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service ...saminamagar
 
Pharmaceutical Marketting: Unit-5, Pricing
Pharmaceutical Marketting: Unit-5, PricingPharmaceutical Marketting: Unit-5, Pricing
Pharmaceutical Marketting: Unit-5, PricingArunagarwal328757
 
Case Report Peripartum Cardiomyopathy.pptx
Case Report Peripartum Cardiomyopathy.pptxCase Report Peripartum Cardiomyopathy.pptx
Case Report Peripartum Cardiomyopathy.pptxNiranjan Chavan
 
Hematology and Immunology - Leukocytes Functions
Hematology and Immunology - Leukocytes FunctionsHematology and Immunology - Leukocytes Functions
Hematology and Immunology - Leukocytes FunctionsMedicoseAcademics
 
Call Girls Hsr Layout Just Call 7001305949 Top Class Call Girl Service Available
Call Girls Hsr Layout Just Call 7001305949 Top Class Call Girl Service AvailableCall Girls Hsr Layout Just Call 7001305949 Top Class Call Girl Service Available
Call Girls Hsr Layout Just Call 7001305949 Top Class Call Girl Service Availablenarwatsonia7
 
VIP Call Girls Lucknow Nandini 7001305949 Independent Escort Service Lucknow
VIP Call Girls Lucknow Nandini 7001305949 Independent Escort Service LucknowVIP Call Girls Lucknow Nandini 7001305949 Independent Escort Service Lucknow
VIP Call Girls Lucknow Nandini 7001305949 Independent Escort Service Lucknownarwatsonia7
 
Call Girls Service in Bommanahalli - 7001305949 with real photos and phone nu...
Call Girls Service in Bommanahalli - 7001305949 with real photos and phone nu...Call Girls Service in Bommanahalli - 7001305949 with real photos and phone nu...
Call Girls Service in Bommanahalli - 7001305949 with real photos and phone nu...narwatsonia7
 
Call Girls Jayanagar Just Call 7001305949 Top Class Call Girl Service Available
Call Girls Jayanagar Just Call 7001305949 Top Class Call Girl Service AvailableCall Girls Jayanagar Just Call 7001305949 Top Class Call Girl Service Available
Call Girls Jayanagar Just Call 7001305949 Top Class Call Girl Service Availablenarwatsonia7
 
Call Girls Kanakapura Road Just Call 7001305949 Top Class Call Girl Service A...
Call Girls Kanakapura Road Just Call 7001305949 Top Class Call Girl Service A...Call Girls Kanakapura Road Just Call 7001305949 Top Class Call Girl Service A...
Call Girls Kanakapura Road Just Call 7001305949 Top Class Call Girl Service A...narwatsonia7
 
call girls in green park DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in green park  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžcall girls in green park  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in green park DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžsaminamagar
 
High Profile Call Girls Kodigehalli - 7001305949 Escorts Service with Real Ph...
High Profile Call Girls Kodigehalli - 7001305949 Escorts Service with Real Ph...High Profile Call Girls Kodigehalli - 7001305949 Escorts Service with Real Ph...
High Profile Call Girls Kodigehalli - 7001305949 Escorts Service with Real Ph...narwatsonia7
 
High Profile Call Girls Mavalli - 7001305949 | 24x7 Service Available Near Me
High Profile Call Girls Mavalli - 7001305949 | 24x7 Service Available Near MeHigh Profile Call Girls Mavalli - 7001305949 | 24x7 Service Available Near Me
High Profile Call Girls Mavalli - 7001305949 | 24x7 Service Available Near Menarwatsonia7
 
Low Rate Call Girls Mumbai Suman 9910780858 Independent Escort Service Mumbai
Low Rate Call Girls Mumbai Suman 9910780858 Independent Escort Service MumbaiLow Rate Call Girls Mumbai Suman 9910780858 Independent Escort Service Mumbai
Low Rate Call Girls Mumbai Suman 9910780858 Independent Escort Service Mumbaisonalikaur4
 
call girls in munirka DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in munirka  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžcall girls in munirka  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in munirka DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžsaminamagar
 
Kolkata Call Girls Services 9907093804 @24x7 High Class Babes Here Call Now
Kolkata Call Girls Services 9907093804 @24x7 High Class Babes Here Call NowKolkata Call Girls Services 9907093804 @24x7 High Class Babes Here Call Now
Kolkata Call Girls Services 9907093804 @24x7 High Class Babes Here Call NowNehru place Escorts
 

KĂŒrzlich hochgeladen (20)

9873777170 Full Enjoy @24/7 Call Girls In North Avenue Delhi Ncr
9873777170 Full Enjoy @24/7 Call Girls In North Avenue Delhi Ncr9873777170 Full Enjoy @24/7 Call Girls In North Avenue Delhi Ncr
9873777170 Full Enjoy @24/7 Call Girls In North Avenue Delhi Ncr
 
High Profile Call Girls Jaipur Vani 8445551418 Independent Escort Service Jaipur
High Profile Call Girls Jaipur Vani 8445551418 Independent Escort Service JaipurHigh Profile Call Girls Jaipur Vani 8445551418 Independent Escort Service Jaipur
High Profile Call Girls Jaipur Vani 8445551418 Independent Escort Service Jaipur
 
VIP Call Girls Mumbai Arpita 9910780858 Independent Escort Service Mumbai
VIP Call Girls Mumbai Arpita 9910780858 Independent Escort Service MumbaiVIP Call Girls Mumbai Arpita 9910780858 Independent Escort Service Mumbai
VIP Call Girls Mumbai Arpita 9910780858 Independent Escort Service Mumbai
 
Call Girls Thane Just Call 9910780858 Get High Class Call Girls Service
Call Girls Thane Just Call 9910780858 Get High Class Call Girls ServiceCall Girls Thane Just Call 9910780858 Get High Class Call Girls Service
Call Girls Thane Just Call 9910780858 Get High Class Call Girls Service
 
Air-Hostess Call Girls Madambakkam - Phone No 7001305949 For Ultimate Sexual ...
Air-Hostess Call Girls Madambakkam - Phone No 7001305949 For Ultimate Sexual ...Air-Hostess Call Girls Madambakkam - Phone No 7001305949 For Ultimate Sexual ...
Air-Hostess Call Girls Madambakkam - Phone No 7001305949 For Ultimate Sexual ...
 
call girls in Connaught Place DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service ...
call girls in Connaught Place  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service ...call girls in Connaught Place  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service ...
call girls in Connaught Place DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service ...
 
Pharmaceutical Marketting: Unit-5, Pricing
Pharmaceutical Marketting: Unit-5, PricingPharmaceutical Marketting: Unit-5, Pricing
Pharmaceutical Marketting: Unit-5, Pricing
 
Case Report Peripartum Cardiomyopathy.pptx
Case Report Peripartum Cardiomyopathy.pptxCase Report Peripartum Cardiomyopathy.pptx
Case Report Peripartum Cardiomyopathy.pptx
 
Hematology and Immunology - Leukocytes Functions
Hematology and Immunology - Leukocytes FunctionsHematology and Immunology - Leukocytes Functions
Hematology and Immunology - Leukocytes Functions
 
Call Girls Hsr Layout Just Call 7001305949 Top Class Call Girl Service Available
Call Girls Hsr Layout Just Call 7001305949 Top Class Call Girl Service AvailableCall Girls Hsr Layout Just Call 7001305949 Top Class Call Girl Service Available
Call Girls Hsr Layout Just Call 7001305949 Top Class Call Girl Service Available
 
VIP Call Girls Lucknow Nandini 7001305949 Independent Escort Service Lucknow
VIP Call Girls Lucknow Nandini 7001305949 Independent Escort Service LucknowVIP Call Girls Lucknow Nandini 7001305949 Independent Escort Service Lucknow
VIP Call Girls Lucknow Nandini 7001305949 Independent Escort Service Lucknow
 
Call Girls Service in Bommanahalli - 7001305949 with real photos and phone nu...
Call Girls Service in Bommanahalli - 7001305949 with real photos and phone nu...Call Girls Service in Bommanahalli - 7001305949 with real photos and phone nu...
Call Girls Service in Bommanahalli - 7001305949 with real photos and phone nu...
 
Call Girls Jayanagar Just Call 7001305949 Top Class Call Girl Service Available
Call Girls Jayanagar Just Call 7001305949 Top Class Call Girl Service AvailableCall Girls Jayanagar Just Call 7001305949 Top Class Call Girl Service Available
Call Girls Jayanagar Just Call 7001305949 Top Class Call Girl Service Available
 
Call Girls Kanakapura Road Just Call 7001305949 Top Class Call Girl Service A...
Call Girls Kanakapura Road Just Call 7001305949 Top Class Call Girl Service A...Call Girls Kanakapura Road Just Call 7001305949 Top Class Call Girl Service A...
Call Girls Kanakapura Road Just Call 7001305949 Top Class Call Girl Service A...
 
call girls in green park DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in green park  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžcall girls in green park  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in green park DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
 
High Profile Call Girls Kodigehalli - 7001305949 Escorts Service with Real Ph...
High Profile Call Girls Kodigehalli - 7001305949 Escorts Service with Real Ph...High Profile Call Girls Kodigehalli - 7001305949 Escorts Service with Real Ph...
High Profile Call Girls Kodigehalli - 7001305949 Escorts Service with Real Ph...
 
High Profile Call Girls Mavalli - 7001305949 | 24x7 Service Available Near Me
High Profile Call Girls Mavalli - 7001305949 | 24x7 Service Available Near MeHigh Profile Call Girls Mavalli - 7001305949 | 24x7 Service Available Near Me
High Profile Call Girls Mavalli - 7001305949 | 24x7 Service Available Near Me
 
Low Rate Call Girls Mumbai Suman 9910780858 Independent Escort Service Mumbai
Low Rate Call Girls Mumbai Suman 9910780858 Independent Escort Service MumbaiLow Rate Call Girls Mumbai Suman 9910780858 Independent Escort Service Mumbai
Low Rate Call Girls Mumbai Suman 9910780858 Independent Escort Service Mumbai
 
call girls in munirka DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in munirka  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžcall girls in munirka  DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in munirka DELHI 🔝 >àŒ’9540349809 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
 
Kolkata Call Girls Services 9907093804 @24x7 High Class Babes Here Call Now
Kolkata Call Girls Services 9907093804 @24x7 High Class Babes Here Call NowKolkata Call Girls Services 9907093804 @24x7 High Class Babes Here Call Now
Kolkata Call Girls Services 9907093804 @24x7 High Class Babes Here Call Now
 

Medianet manual

  • 1. dcm4che Media and Network Applications by Thomas Hacklaender, MD, MSc (hacklaender@iftm.de) covers dcm4che version 1.0.3 This manual describes how to use the sample applications of the dcm4che library as PACS communication tools for the ImageJ framework. Table of Contents 1 Getting Started ........................................................................................................................ 2 1.1 Installation ....................................................................................................................... 2 2 Example Scenario ................................................................................................................... 4 3 Applications ............................................................................................................................. 6 3.1 General ............................................................................................................................ 6 3.2 dcmdir.............................................................................................................................. 6 3.3 dcmrcv............................................................................................................................. 7 3.4 dcmsnd............................................................................................................................ 8 4 References ............................................................................................................................ 10 Document Version: 22 August 2002 1
  • 2. 1 Getting Started 1.1 Installation Install ImageJ and the “DICOM Import and Export Plugins” as described in the accompanying manual. The installation directory will be referenced in the following as <IMAGEJ_HOME>. The standard installation leads to a Java 1.4 JRE and a subdirectory <IMAGEJ_HOME>/lib with the following library files: File/Directory Description dcm4che.jar The dcm4che library. log4j.jar The logger used by dcm4che. links.txt A list of links to obtain the source code and other information to the libraries. Download the media and network support archive. Unzip the medianet.zip file to <IMAGEJ_HOME>. You will receive the new directory medianet including the following files: File/Directory Description dcmdir_a.bat A dummy batch file to add file references. dcmdir_c.bat A dummy batch file to create a file-set. dcmdir_x.bat A dummy batch file to remove file references. dcmdir_z.bat A dummy batch file to compact a file-set. dcmdir.cfg The configuration file containing the default properties of dcmdir. dcmdir.jar The dcmdir application. dcmrcv_file.bat A dummy batch file to start the server. Stores objects as files in ./tmp. dcmrcv_dir.bat A dummy batch file to start the server. Stores objects in file-set ./tmp/DICOMDIR. dcmrcv.cfg Configuration file containing the default properties of dcmrcv. dcmrcv.jar The dcmrcv application. dcmrcv.key A file containing security keys for dcmrcv. dcmsnd.bat A dummy batch file to send a file to a server. dcmsnd_echo.bat A dummy batch file to test the connection with DICOM Echo. dcmsnd.cfg Configuration file containing the default properties of dcmsnd. dcmsnd.jar The dcmsnd application. dcmsnd.key A file containing security keys for dcmsnd. /doc The directory containing documentation files: manual.pdf – This manual as PDF fille. manual.rtf – This manual as Rich Text File. getopt.jar A library for command-line options used by all applications. log4j.properties Property file for the log4j logger used by dcm4che. SMPTE A sample DICOM image. /tmp A direc tory for temporary files used by the dummy batch files: SMPTE2 - A sample DICOM image. Document Version: 22 August 2002 2
  • 3. Document Version: 22 August 2002 3
  • 4. 2 Example Scenario In the DICOM network communication context each node is defined by three information usually provided by the manufacturer: 1. The application entity title (AET) 2. The internet protocol (IP) address 3. The port number To exchange information between two nodes, both must know from each other. Therefore each node has a list of possible communication partners. Typically you have to ask your equipment manufacturer to enter the three information of a new DICOM node to this list. In the following it is explained how to send an image from a modality (e.g. MR imager) to a workstation, postprocess the image using ImageJ and store the result into a PACS archive. The workflow is shown on the diagram on the next page. Application Entity Title IP Address Port Number Patient Patient Study Series Instance ID Name ID Number Number Modality SCANNER 192.168.0.5 5104 Archive ARCHIVE 192.168.0.6 7120 dcmrcv DCMRCV 192.168.0.7 104 dcmsnd DCMSND 192.168.0.8 104 Image 1234567890 Test 29 17 1 First we have to create an empty DICOMDIR in the file-set. In the example the DICOM file-set should be stored in the directory ./tmp: java -jar dcmdir.jar -c ./tmp/DICOMDIR Next the image server has to be started: java -jar dcmrcv.jar --dest=./tmp/DICOMDIR 104 Now the image may be send from the modality to the image server. The image is stored in the file-set at ./tmp/TEST/29/17/1 and an entry in DICOMDIR is made. Start ImageJ and import the received image using the Dcm_Import plugin. Use the DICOMDIR- Tab to select the image. Process the image. Export the processed image to the file-set using the Dcm_export plugin. Use the DICOMDIR- Tab to select the file-set as destination. Send the image to the archive: java -jar dcmsnd.jar dicom://ARCHIVE:DCMSND@192.168.0.6:7120 ./tmp/TEST/29/17/1 Delete the image (and all other images of the patient) in the file-set: java -jar dcmdir.jar -X ./tmp/DICOMDIR --pat 1234567890 ./tmp java -jar dcmdir.jar -z ./tmp/DICOMDIR Document Version: 22 August 2002 4
  • 5. Modality Archive Application Entity Title: <mod_AET> Application Entity Title: <arc_AET> IP Address: <mod_IP> IP Address: <arc_IP> Port Number: <mod_PORT> Port Number: <arc_PORT> Image <patient_ID> <study_instance_UID> <series_instance_UID> <PatientName> <StudyID> <SeriesNumber> <ImageInstanceNumber> (i.e. Image Number) Workstation dcmrcv dcmsnd Application Entity Title: <rcv_AET> Application Entity Title: <snd_AET> IP Address: <rcv_IP> IP Address: <snd_IP> Port Number: <rcv_PORT> Port Number: <snd_PORT> DICOMDIR Path: <dir_path> dcmdir ImageJ Standard Commands: CD-Writer Plugins: ‱ Create Software ‱ Dcm_Import ‱ Add ‱ Dcm_Export ‱ Remove ‱ Dcm_Inspector ‱ Purge ‱ Compact Document Version: 22 August 2002 5
  • 6. 3 Applications 3.1 General In the following files and directories may be referenced either by an absolute or a relative refer- ence. A relative reference is relative to the current directory and starts with the string ./ . The parent directory is referenced by ../ . The path delimiter is independent of the operating sys- tem the character / . References not starting with a . are absolute. On systems running under a Windows OS these references start with the drive letter, e.g. C:/tmp/foo.dcm . On Linux sys- tems they start with a /, e.g. /tmp/foo.dcm . 3.2 dcmdir This application processes DICOM file-sets, as described in part 10 of the DICOM standard. Keep in mind, that DICOM restricts possible file-names: A file-set must contain one file, with name DICOMDIR, that contains information concerning the file-set. You can only add files to a file-set, which are stored in the directory of the DICOMDIR file or in sub-directories up to eight levels. The name of such files and directories may only be 8 characters long and the characters must be capital letters or numbers. The character ‘.’ is not allowed. Using standard CD-writing software it is possible to create a DICOM-CD. Just write the whole contents of the directory containing the DICOMDIR file and all its subdirectories to a CD. Examples: java -jar dcmdir.jar -c ./tmp/DICOMDIR Creates an empty file-set in the subdirectory tmp. java -jar dcmdir.jar -a ./tmp/DICOMDIR ./tmp/SMPTE2 Adds the existing DICOM object ./tmp/SMPTE2 to the existing file-set ./tmp/DICOMDIR . java -jar dcmdir.jar -x ./tmp/DICOMDIR --pat 1234567890 ./tmp Marks in the file-set ./tmp/DICOMDIR all entries as “not in use”, if the referenced files are in directory ./tmp or its subdirectories and have a patient ID equal to 1234567890. java -jar dcmdir.jar -P ./tmp/DICOMDIR Marks in the file-set ./tmp/DICOMDIR all entries as “not in use”, if the referenced files are not physical present at the referenced position in the filesystem. java -jar dcmdir.jar -z ./tmp/DICOMDIR Removes all entries in the file-set ./tmp/DICOMDIR which are marked as “not in use”. Document Version: 22 August 2002 6
  • 7. Usage: java -jar dcmdir.jar -{tcaxXzP} dir-file [OPTION]... [FILE]... Command: -c dir-file create new DICOMDIR file with references to files... -a dir-file add file references to existing DICOMDIR file -x dir-file remove record(s) from existing DICOMDIR, with specified --pat id Patient ID --study uid Study Instance UID --series uid Series Instance UID --sop uid SOP Instance UID [FILE]... referenced files -X dir-file same as -x dir-file, but also deletes referenced files -P dir-file purge records from existing DICOMDIR file, with referenced files do not exist anymore -z dir-file compact existing DICOMDIR file by removing inactive records Options (override presets defined in resource dcmdir.cfg): --id id defines File-set ID of created DICOMDIR file --uid uid defines SOP Instance UID of created DICOMDIR file --readme readme-file add README file reference to created DICOMDIR file --readme-charset code specifies character set used in README file --grouplen encode with (gggg,0000) group length attributes --seqlen encode sequence attributes with explicit length --itemlen encode sequence items with explicit length --onlyInUse hide inactive records in content list --maxlen line-len maximal line length in listing; default=79 --vallen val-len displayed value length in listing; default=64 --help display this help and exit --version output version information and exit 3.3 dcmrcv This application implements a DICOM server listening on PORT. It acts as a Storage SCP. The received images are stored to the local file-system or in a DICOM file-set, depending on the dest option. If the destination is a file-set, the received objects are stored in subdirectories of the file-set directory. The names of the subdirectories are derived from the received object: Pa- tientName, StudyID and SeriesNumber. The name of the file the object is stored is the In- stanceNumber. This behavior may be configured by the fs-file-id option. Example: java -jar dcmrcv.jar --dest=./tmp 104 Starts the server, listening on port 104. The received DICOM objects are stored as plain files in the subdirectory tmp. Usage: java -jar dcmrcv.jar [OPTION]... PORT Options (override presets defined in resource dcmrcv.cfg): --called-aets=AET1,.. only association requests with matching called and --calling-aets=AET1,.. calling AET will be accepted --max-pdu-len=LEN set maximal length of receiving PDUs [default=16352] --max-op-invoked=NUM set maximal number of invoked operations with outstanding response Document Version: 22 August 2002 7
  • 8. --rsp-delay=SEC define additional delay of response (useful for testing async mode) --dest=DEST define storage destination for received objects, if DEST specifies a DICOMDIR file path (=last component = "DICOMDIR"), the received objects will be stored as DICOM File-set, further specified by --fs-id=NAME the File-set Identifier [default=<none>], --fs-uid=UID the File-set SOP Instance UID [default=<auto>], --fs-file-id=TAG_PATH specifies schema for generated file IDs [default= StudyDate,StudyID,SeriesNumber,InstanceNumber], --fs-lazy-update defer update of DICOMDIR at association release, instead immedately at each object receipt. --set=TAG:VAL Replace value of specified attribute with specified value in received object (e.g.: --set=PatientName:anonymous). --buf-len=LEN set length byte buffer, used to store data to file --tls=CIPHERSUITE1,.. accept TLS connection with specified Cipher Suites eg.: SSL_RSA_WITH_NULL_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA --tls-key=KEYSTORE get key from specified resource [default:dcmrcv.key] --tls-key-passwd=PASS password for keystore and key specified by --tls-key [default: dcm4che] --tls-cacerts=KEYSTORE read trusted CA Certificats from specified resource [default:cacerts] --tls-cacerts-passwd=PASS password for keystore specified by --tls-cacerts [default: dcm4che] --help display this help and exit --version output version information and exit 3.4 dcmsnd This application send DICOM objects to an Storage SCP, e.g. an archive. It acts as a Storage SCU. The objects are read from the local file-system and are send to an Storage SCP which is defined by URL. FILE may be the name of a single file, a list of files separated by whitespaces or the name of a directory. In the later case all files in the directory and all subdirectories are send. If FILE is omitted, the connection to the remote node will be verified by DICOM Echo. Examples: java -jar dcmsnd.jar dicom://DCMRCV:DCMSND@localhost:104 ./SMPTE Opens association to local server, listening on port 104, with calling application entity title DCMSND and called application entity title DCMRCV. Sends the DICOM file ./SMPTE to the server. java -jar dcmsnd.jar dicom://DCMRCV:DCMSND@localhost:104 Opens association to local server, listening on port 104, with calling application entity title DCMSND and called application entity title DCMRCV. Verifies the connection with DICOM Echo. Usage: java -jar dcmsnd.jar [OPTION]... URL [FILE]... Url: dicom://CALLED[:CALLING]@HOST[:PORT] CALLED Called AET in association request CALLING Calling AET in association request [default=ANONYMOUS] Document Version: 22 August 2002 8
  • 9. HOST Name or IP address of host, where the server is running PORT TCP port address, on which the server is listing for incoming TCP Transport Connection Indication [default=104] Options (override presets defined in resource dcmsnd.cfg): --prior-high HIGH priority of storage requests [default=NORMAL] --prior-low LOW priority of storage requests [default=NORMAL] --max-pdu-len=LEN set maximal length of receiving PDUs [default=16352] --max-op-invoked=NUM set maximal number of invoked operations with outstanding response [default=0 -> unlimited] --max-pdu-len=LEN maximal length of receiving PDUs [default=16352] --buf-len=LEN byte buffer length, used to store data to file [default=2048] --repeat-dimse=NUM Number of times to repeat single request [default=1] --repeat-assoc=NUM Number of times to repeat whole operation [default=1] --buf-len=LEN set length byte buffer, used to store data to file --set=TAG:VAL Replace value of specified attribute with specified value in transmitted object (e.g.: --set=PatientName:anonymous). --tls=CIPHERSUITE1,.. accept TLS connection with specified Cipher Suites eg.: SSL_RSA_WITH_NULL_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA --tls-key=KEYSTORE get key from specified resource [default:dcmsnd.key] --tls-key-passwd=PASS password for keystore and key specified by --tls-key [default: dcm4che] --tls-cacerts=KEYSTORE read trusted CA Certificats from specified resource [default:cacerts] --tls-cacerts-passwd=PASS password for keystore specified by --tls-cacerts [default: dcm4che] --poll-dir=DIR Poll the specified directory for DICOM files - e.g. received by application dcmrcv - and forward them to the remote DICOM node. [default: <none>] --poll-period=PERIOD Poll period in s. The default is 5s. --poll-retry-open=TIME Retry open connection to remote host with specified time interval. The default is 60s. --poll-delta-last-modified=TIME Only consider files, which modification time differs with the current time more than the specified value. The default is 3s. --poll-done-dir=DIR Moves sent files to the specified directory, instead of removing it from poll-dir. --help display this help and exit --version output version information and exit Document Version: 22 August 2002 9
  • 10. 4 References The ImageJ framework: http://rsb.info.nih.gov/ij/ The dcm4che project homepage: http://sourceforge.net/projects/dcm4che/ The DICOM normative text: http://www.dclunie.com/ Document Version: 22 August 2002 10