Hi,
Could someone give me some advice how to get value of dicom tags which are NOT “Main Dicom Tags” in Orthanc.
I need some tags for nuclear medicine images, like:
Radiopharmaceutical (0018,0031),
PhaseVector(0054,0030),
EnergyWindowVector(0054,0010),
DetectorVector(0054,0020)
I would like to get/display these tags in webviewer.
Thanks,
Agnieszka
Hello,
You can get the value of all the non-main DICOM tags using the “/instances/…/tags” route, for instance:
https://demo.orthanc-server.com/instances/83354841-24928346-008ed987-8032f76c-6363d8eb/tags?simplify
You can also get the raw content of a single DICOM tag using “/instances/…/content” as follows:
https://demo.orthanc-server.com/instances/73343e19-ed69fcda-a4f7fc62-d20f9300-d37d84f3/content/0054-1001
HTH,
Sébastien-