virtual_try_on
Visualize how clothing looks on a person by uploading their image and up to 5 clothing items. Use AI to combine items for complete outfit previews and experiment with virtual try-on results.
Instructions
Apply virtual clothing try-on to a person image using AI. Upload a person image and up to 5 clothing items to see how they would look wearing those clothes. Supports both single and multiple clothing combinations for complete outfit visualization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cloth_image_urls | Yes | Array of clothing image URLs (1-5 items). Multiple items will be combined into a complete outfit | |
model_name | No | Model version to use (default: kolors-virtual-try-on-v1.5) | |
person_image_url | Yes | URL of the person image to try clothes on |
Input Schema (JSON Schema)
{
"properties": {
"cloth_image_urls": {
"description": "Array of clothing image URLs (1-5 items). Multiple items will be combined into a complete outfit",
"items": {
"type": "string"
},
"maxItems": 5,
"minItems": 1,
"type": "array"
},
"model_name": {
"description": "Model version to use (default: kolors-virtual-try-on-v1.5)",
"enum": [
"kolors-virtual-try-on-v1",
"kolors-virtual-try-on-v1.5"
],
"type": "string"
},
"person_image_url": {
"description": "URL of the person image to try clothes on",
"type": "string"
}
},
"required": [
"person_image_url",
"cloth_image_urls"
],
"type": "object"
}