Instantly unblur and sharpen your image (*face) for enhanced clarity.

POST /image/unblur

Enhances image clarity by applying advanced unblurring and sharpening algorithms to restore detail to photos affected by motion blur, focus issues, or low-quality capture.

  • Supports common image formats
  • Performs real-time processing
  • Delivers a sharper, clearer image almost instantly
  • Advanced pipeline for optimal results

Perfect for applications where clear, high-quality images are essential, such as e-commerce, document processing, and photography.

application/json

Body Required

  • init_image string Required
  • pipeline object

    Additional properties are allowed.

    Hide pipeline attributes Show pipeline attributes object
    • bokeh string

      Values are background_blur_low, background_blur_medium, or background_blur_high. Default value is background_blur_low.

    • Values are prism-blend, prism-expert-a, prism-expert-c, muted, orange-teal, silky, lit_soft_warm, or orange-teal_v2. Default value is prism-blend.

    • Values are shiba-strong-tensorrt, rhino-tensorrt, or upsampler-bicubic. Default value is shiba-strong-tensorrt.

    • Values are pinko_bigger_dataset-style, movie-style, or marzipan-style. Default value is pinko_bigger_dataset-style.

    • Values are recommender_entire_dataset or remini. Default value is recommender_entire_dataset.

Responses

  • 200 application/json

    Default Response

    Hide response attributes Show response attributes object
  • 400 application/json

    Invalid request error

    Hide response attributes Show response attributes object
  • 401 application/json

    Authorization error

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
POST /image/unblur
curl \
 -X POST https://api.itsrose.rest/image/unblur \
 -H "Content-Type: application/json" \
 -d '{"init_image":"https://scdn.lovita.io/rose_ayank_david.jpg","pipeline":{"bokeh":"background_blur_low","color_enhance":"prism-blend","background_enhance":"shiba-strong-tensorrt","face_lifting":"pinko_bigger_dataset-style","face_enhance":"recommender_entire_dataset"}}'
Request examples
{
  "init_image": "https://scdn.lovita.io/rose_ayank_david.jpg",
  "pipeline": {
    "bokeh": "background_blur_low",
    "color_enhance": "prism-blend",
    "background_enhance": "shiba-strong-tensorrt",
    "face_lifting": "pinko_bigger_dataset-style",
    "face_enhance": "recommender_entire_dataset"
  }
}
Response examples (200)
{
  "status": true,
  "message": "success",
  "result": {
    "images": [
      "string"
    ],
    "pipeline": {},
    "backend_processing_time": 0
  }
}
Response examples (400)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (401)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (500)
{
  "status": false,
  "message": "string",
  "result": {}
}