Previous Topic Previous

Next Topic Next

Book Contents Contents

Book Index Index

DICOM and Database Functionality

DICOM

The DICOM standard has been established to facilitate data exchange between medical systems. It defines how the medical data must be encoded, and how they can be sent from an application on one computer to an application on a remote computer. DICOM basically consists of two components:

PMOD is able to act both as a DICOM client and a server.

Database

The DICOM standard includes a description how DICOM data must be organized for off-line media such as CDs or DVDs. Basically, all the DICOM objects are stored in a directory tree, and a description of all stored studies must be written into a file called DICOMDIR at the root level of the directory tree. This approach is not suited for dynamically managed data, because the DICOMDIR file must be updated each time a study is removed or added, and because reading of the DICOMDIR is relatively slow.

To improve the performance when working with DICOM images, PMOD uses SQL databases to organize DICOM data access. The most important attributes of the DICOM objects like patient information, study and image descriptions as well as the file locations are stored in database tables. When the user needs to select image data, he is shown the information from the database tables which can very efficiently be searched and retrieved. After a study is selected, the file access information is immediately available to start the loading process.

Database Operation

If the database is configured, PMOD can save images and all other information types such as VOIs, transformations, kinetic modeling files etc. in the same manner as described for the DICOM objects:

A Save operation sends a request to the database containing all relevant meta-information about the data (patient name, study, series, data type, etc) and the data itself. The database server then saves the data into a directory structure and adds the access information into its tables.

When Load operations are performed, this access information is presented to the user in a way which allows to perform database searches, and if a data set is selected, it can be loaded into the PMOD tool using the internal access information.

Benefits of Using the Database

There are several benefits resulting from the use of the PMOD database:

In This Chapter

PMOD DICOM Functionality

PMOD Database Functionality