colinhughes2121/ai-mugshot-stylizer
Turn any photo into a viral 90s celebrity-style mugshot. Height marker, harsh lighting. Pure fun, fake.
Public
0
runs
Run colinhughes2121/ai-mugshot-stylizer with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| image |
string
|
Input photo
|
|
| strength |
number
|
0.6
Min: 0.1 Max: 0.85 |
Transform intensity (lower = subtle, higher = dramatic)
|
| seed |
integer
|
0
|
Random seed (0 = random)
|
{
"type": "object",
"title": "Input",
"required": [
"image"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": 0,
"x-order": 2,
"description": "Random seed (0 = random)"
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"x-order": 0,
"description": "Input photo"
},
"strength": {
"type": "number",
"title": "Strength",
"default": 0.6,
"maximum": 0.85,
"minimum": 0.1,
"x-order": 1,
"description": "Transform intensity (lower = subtle, higher = dramatic)"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}