Rule to transmit only one image of the series #9
-
Hello Mercure Team! Is it possible to create a rule to transmit only one image of the series to a DICOM destination? I need only one image transferred per CT Scan series but when I create a rule like this, Mercure only transmits the topogram and the dose report because it analyzes the tags on the series and not image by image: @InstanceNumber@ == '1' and @MediaStorageSOPClassUID@ == '1.2.840.10008.5.1.4.1.1.2' Any ideas? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes, the rules are evaluated on a per-series basis, not image-by-image. But you can achieve this by writing a small mercure processing module that copies one of the images in the module's input folder to the module's output folder. You can do that using bash or Python (e.g. using this module as template: https://github.com/mercure-imaging/mercure-testmodule) |
Beta Was this translation helpful? Give feedback.
Yes, the rules are evaluated on a per-series basis, not image-by-image. But you can achieve this by writing a small mercure processing module that copies one of the images in the module's input folder to the module's output folder. You can do that using bash or Python (e.g. using this module as template: https://github.com/mercure-imaging/mercure-testmodule)