photo_face_blur
Face Blur — Automatically detect and blur faces in a photo for privacy protection. [category: photo]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | JPG, PNG, WebP, BMP (max 25MB) | |
| blur_mode | No | gaussian softens, pixelate mosaics, solid draws an opaque black box — solid is the only mode that survives deblurring attacks. | gaussian |
| block_size | No | Size of each mosaic square. 0 uses the amount chosen above; 1 is ignored, use 2 or more. | |
| blur_radius | No | Gaussian radius override. 0 = auto from blur_strength. | |
| manual_faces | No | Advanced: extra rectangles to blur even if no face was found there, as [{"x":10,"y":20,"w":80,"h":80}] in pixels. | |
| blur_strength | No | Preset intensity 1-4. blur_radius/block_size overrides beat it when set; irrelevant for solid mode. | |
| output_format | No | Optional output format; defaults to the input format. | |
| selected_faces | No | Advanced: which detected faces to blur, as a list of numbers starting at 0, e.g. [0,2]. Leave empty to blur every face found. |