Mercurial > hg > orthanc-book
view Sphinx/source/plugins/stl/rt-struct.py @ 1150:84d5e5f3c670
Added tag Orthanc-1.12.7 for changeset a23a5e08f3b4
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 07 Apr 2025 13:01:12 +0200 |
parents | 5a3c238575f8 |
children |
line wrap: on
line source
import json import requests r = requests.post('http://localhost:8042/stl/encode-rtstruct', json.dumps({ 'Instance' : 'f0dc2345-8f627774-f66083ae-a14d781e-1187b513', # ID of the RT-STRUCT DICOM instance 'RoiNames' : [ 'Lung_L', 'Lung_R' ], 'Smooth' : True, 'Resolution' : 256 })) r.raise_for_status() instanceId = r.json() ['ID']