Difference between revisions of "The CTP DICOM Filter"

From MircWiki
Jump to navigation Jump to search
Line 28: Line 28:
  
 
The value of an identifier is the string value stored in the received DICOM object in the element associated with the identifier. If an identifier is missing from the received DICOM object, an empty string is provided.
 
The value of an identifier is the string value stored in the received DICOM object in the element associated with the identifier. If an identifier is missing from the received DICOM object, an empty string is provided.
 +
 +
Script Example:
 +
Suppose that images are to be rejected if they are of type "SECONDARY". Such images could be filtered out of the pipeline with a script like:
 +
 +
::<b>!ImageType.contains("SECONDARY")</b>
 +
 +
Note the unary negation operator, which is necessary to generate <b>true</b> for images which do <b>not</b> contain the string <b>SECONDARY</b>.
 +
 +
Suppose that images are to be rejected if they are of type "SECONDARY" or of type "DERIVED". Such images could be filtered out of the pipeline with a script like:
 +
 +
::<b>!(ImageType.contains("SECONDARY") + ImageType.contains("DERIVED"))</b>
 +
 +
Note again the unary negation operator, and also note the parentheses and the logical <b>or</b> operator, all of which combine to generate <b>true</b> only if the type is neither <b>SECONDARY</b> nor <b>DERIVED</b>.
 +
 +
Finally, suppose that images containing any non-empty value in the ImageType element are to be rejected. Such images could be filtered out with a script like:
 +
 +
::<b>ImageType.equals("")</b>

Revision as of 01:51, 11 August 2008

The CTP DicomFilter is a pipeline stage that provides preprocessing of DicomObjects, quarantining those which do not meet the conditions of a script program. This article describes the script language. The intended audience for this article is CTP administrators setting up a processing pipeline.

The Script Language

The script language interrogates a received DICOM object and computes a boolean result that, if true, results in the object being accepted for further processing in the pipeline, and if false, results in the object being quarantined, aborting further processing.

An expression in the language consists of terms separated by operators and/or parentheses. There are three operators, listed in order of increasing precedence:

  • + is logical or
  • * is logical and
  • ! is unary logical negation

Examples:

  • term
  • !term
  • term + term * term
  • term * (term + term) + term * !term

Terms in the language are either reserved words (true. or false.) (note the periods after the words) or expressions in the form:

identifier.method("string")

An identifier is either a DICOM element name as defined in the CTP DICOM Anonymizer (e.g. SOPInstanceUID) or a DICOM tag, specified in square brackets (e.g. [0008,0018]). No spaces are permitted in identifiers, and tags are required to contain all eight hexadecimal digits identifying the group and element.

The language supports these methods:

  • equals returns true if the value of the identifier exactly equals the string argument; otherwise, it returns false.
  • matches returns true if the value of the identifier matches the regular expression specified in the string argument; otherwise, it returns false.
  • contains returns true if the value of the identifier contains the the string argument anywhere within it; otherwise, it returns false.
  • startsWith returns true if the value of the identifier starts with the string argument; otherwise, it returns false.
  • endsWith returns true if the value of the identifier ends with the string argument; otherwise, it returns false.

The value of an identifier is the string value stored in the received DICOM object in the element associated with the identifier. If an identifier is missing from the received DICOM object, an empty string is provided.

Script Example: Suppose that images are to be rejected if they are of type "SECONDARY". Such images could be filtered out of the pipeline with a script like:

!ImageType.contains("SECONDARY")

Note the unary negation operator, which is necessary to generate true for images which do not contain the string SECONDARY.

Suppose that images are to be rejected if they are of type "SECONDARY" or of type "DERIVED". Such images could be filtered out of the pipeline with a script like:

!(ImageType.contains("SECONDARY") + ImageType.contains("DERIVED"))

Note again the unary negation operator, and also note the parentheses and the logical or operator, all of which combine to generate true only if the type is neither SECONDARY nor DERIVED.

Finally, suppose that images containing any non-empty value in the ImageType element are to be rejected. Such images could be filtered out with a script like:

ImageType.equals("")