🖼️ Família de Visão e Imagem
Visão Computacional e IA de Imagem
Recorte alfa com precisão de fios de cabelo para e-commerce, upscaling de super-resolução, restauração de retratos e marcação visual.
Remoção de Fundo de Alta Precisão
POST/v1/vision/remove-background
Recorte alfa com detalhes preservados de cabelos, pelos e vidros transparentes para fotos de produtos.
- Pixel-level alpha matting preserving fine hair, fur, and transparent objects
- Returns transparent PNG, WebP, or custom RGB background composites
- High-throughput processing under 400ms per 4K image
ResolutionUp to 4096 x 4096 px
Output FormatsPNG, WebP (RGBA)
POST /v1/vision/remove-backgroundcURL
curl -X POST https://api.brainiall.com/v1/vision/remove-background \ -H "Authorization: Bearer $BRAINIALL_KEY" \ -F "image=@product_photo.jpg" \ -F "format=png" \ --output transparent_product.png
Super-Resolução e Aumento de Imagem
POST/v1/vision/upscale
Aumento de 2x, 4x e 8x com supressão de artefatos e reconstrução nítida de bordas sem ruídos inventados.
- 2x, 4x, and 8x super-resolution scaling with artifact suppression
- Restores sharp edges, textures, and typography without hallucinated noise
POST /v1/vision/upscalecURL
curl -X POST https://api.brainiall.com/v1/vision/upscale \ -H "Authorization: Bearer $BRAINIALL_KEY" \ -F "image=@lowres_banner.jpg" \ -F "scale=4" \ --output sharp_4k_banner.png
Restauração Facial e de Retratos
POST/v1/vision/face-restore
Restaura detalhes faciais, nitidez dos olhos e textura da pele em fotos antigas ou desfocadas.
- Restores facial fidelity, eye iris clarity, and skin texture in blurry portraits
- Preserves natural facial identity without artificial plastic smoothing
POST /v1/vision/face-restorecURL
curl -X POST https://api.brainiall.com/v1/vision/face-restore \ -H "Authorization: Bearer $BRAINIALL_KEY" \ -F "image=@archived_portrait.jpg" \ --output restored_portrait.png
Rotulagem e Detecção Visual
POST/v1/vision/labels
Classificação multi-rótulo, coordenadas de detecção de objetos e categorização de cenas em JSON estruturado.
- Multi-label classification, object detection coordinates, and scene categorization
- Outputs structured JSON with bounding boxes and normalized confidence scores
POST /v1/vision/labelscURL
curl -X POST https://api.brainiall.com/v1/vision/labels \
-H "Authorization: Bearer $BRAINIALL_KEY" \
-F "image=@storefront.jpg"
# Response:
# {
# "labels": [
# { "name": "apparel", "confidence": 0.98, "box": [120, 80, 450, 600] },
# { "name": "mannequin", "confidence": 0.94, "box": [100, 50, 480, 720] }
# ]
# }