This model is designed to segment a comprehensive list of anatomical structures from MR scans. It covers nearly all major organs and structures in the human body.
from medrouter.client import MedRouter
client = MedRouter(api_key="your API key")
response = client.segmentation.process(
source="your input files path (local)",
model="total-segmentator",
model_id=1,
prechecks=False,
extra_output_type="ply",
notes="The patient has issue in the liver",
check_interval=15,
max_retries=2,
verbose=True
)
print("Final response:", response)
curl -X POST "$URL" \
-H "Authorization: $API_KEY" \
-F "file=@$INPUT_FILE" \
-F "model=total-segmentator" \
-F 1 \
-F "notes=this is a note from the doctor" \
-F "extra_output_type=stl" \
Unlock AI-powered imaging, enhance your workflow today!
This platform is not FDA-approved and does not provide diagnostic services. It is intended for informational purposes only and should not be used as a substitute for professional medical advice, diagnosis, or treatment
Copyright MedRouter 2025. All Rights Reserved.