action orthanc_server_get_instances_id_frames_frame_matlab { label: "Decode frame for Matlab" description: "Decode one frame of interest from the given DICOM instance, and export this frame as a Octave/Matlab matrix to be imported with `eval()`: https://book.orthanc-server.com/faq/matlab.html" provider: orthanc_server method: GET path: "/instances/{id}/frames/{frame}/matlab" encoding: json input: { type: "object" properties: { frame: { type: "number" } id: { type: "string" } } required: ["frame", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }