load-dicom-seg
Load a DICOM SEG file and associate it with a reference image by specifying the file path and reference Series UID. Supports medical image workflows in the DICOM-MCP environment.
Instructions
Load a DICOM SEG file and associate it with a reference image
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reference_series_uid | No | Series UID of the reference image | |
seg_file | Yes | Path to a DICOM SEG file |
Input Schema (JSON Schema)
{
"properties": {
"reference_series_uid": {
"description": "Series UID of the reference image",
"type": "string"
},
"seg_file": {
"description": "Path to a DICOM SEG file",
"type": "string"
}
},
"required": [
"seg_file"
],
"type": "object"
}