action orthanc_server_get_instances_id_frames_frame_image_int16 { label: "Decode a frame (int16)" description: "Decode one frame of interest from the given DICOM instance. Pixels of grayscale images are truncated to the [-32768,32767] range. Negative values must be interpreted according to two's complement." provider: orthanc_server method: GET path: "/instances/{id}/frames/{frame}/image-int16" encoding: json input: { type: "object" properties: { Accept: { type: "string" } frame: { type: "number" } id: { type: "string" } quality: { type: "number" } returnUnsupportedImage: { type: "boolean" } } required: ["frame", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }