crop-dicom-image
Trim unwanted edges from DICOM medical images by specifying a boundary percentage for cropping, ensuring precise image focus with the DICOM-MCP server.
Instructions
Crop a loaded DICOM image by removing boundary percentage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boundary_percentage | No | Percentage of image to crop from each boundary (0.0-0.5) | |
series_uid | Yes | Series UID of the loaded DICOM image |
Input Schema (JSON Schema)
{
"properties": {
"boundary_percentage": {
"description": "Percentage of image to crop from each boundary (0.0-0.5)",
"type": "number"
},
"series_uid": {
"description": "Series UID of the loaded DICOM image",
"type": "string"
}
},
"required": [
"series_uid"
],
"type": "object"
}