Structured Reporting

A very quick question please. I am considering using Orthanc.
I have been asked if it supports Structured Reporting.

Thanks, John Hearns

As written in the Orthanc Book, Orthanc can receive/store/transmit DICOM-SR (structured reports):
https://book.orthanc-server.com/faq/supported-images.html

The analysis of DICOM-SR can be done through Lua scripts, through plugins; through external scripts using the JSON format, or from external DICOM viewers.

As parsing DICOM headers is quite awful Orthanc helps here a lot as You can parse the json version - that’s what I did in my project.

W dniu wtorek, 7 stycznia 2020 18:25:16 UTC+1 użytkownik John Hearns napisał:

I use Orthanc for an application that relies heavily on the contents inside structured reports. I ended up writing a parsing layer than transforms the contents into values that make sense inside my domain (measurements, findings etc). I make use of the JSON output Orthanc emits.

Please Explain How To Extract our Required Data into Json Format from SR Reports

Please Explain How To Extract our Required Data into Json Format from SR Reports

thanks

Hi,

Once you have the id of an instance, you can get a json version of all DICOM Tags through the /tags endpoint:ex: http://localhost:8042/instances/18845bf1-671a1dc2-4162f04d-b1b39f1c-282474e0/tags?simplify

DICOM SRs are just made of DICOM Tags so you get the full SR content there.

HTH

Alain.