action orthanc_server_get_instances_id_numpy { label: "Decode instance for numpy" description: "Decode the given DICOM instance, for use with numpy in Python. The numpy array has 4 dimensions: (frame, height, width, color channel)." provider: orthanc_server method: GET path: "/instances/{id}/numpy" encoding: json input: { type: "object" properties: { compress: { type: "boolean" } id: { type: "string" } rescale: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }