All models
Imagev1.0.0
Bria Eraser (Remove Object)
Erase the masked region and fill it from its surroundings.
3 inputsIMAGE
Demo coming soon
Demo coming soon
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins bria-eraser and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("bria-eraser", {
image: { ref: "https://..." },
mask: { ref: "https://..." },
preserveAlpha: { value: true },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node bria-eraser \
-i image=@https://... \
-i mask=@https://... \
-i preserveAlpha=true{
"name": "runs_node",
"arguments": {
"node": "bria-eraser",
"inputs": {
"image": {
"ref": "https://..."
},
"mask": {
"ref": "https://..."
},
"preserveAlpha": {
"value": true
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"bria-eraser","inputs":{"image":{"ref":"https://..."},"mask":{"ref":"https://..."},"preserveAlpha":{"value":true}}}'Schema
Inputs
| image* | IMAGE | ||
| mask* | IMAGE | ||
| preserveAlpha | BOOLEAN | Preserve transparency | true |
Outputs
| image | IMAGE |