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