All models
Imagev1.0.0
Color Matcher
Match one image's palette to a reference, or fix white balance.
5 inputsIMAGE


Palette matched to a second image
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 color-matcher 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("color-matcher", {
image: { ref: "https://..." },
reference: { ref: "https://..." },
method: { value: "mkl" },
strength: { value: 1 },
fixWhiteBalance: { value: false },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node color-matcher \
-i image=@https://... \
-i reference=@https://... \
-i method="mkl" \
-i strength=1 \
-i fixWhiteBalance=false{
"name": "runs_node",
"arguments": {
"node": "color-matcher",
"inputs": {
"image": {
"ref": "https://..."
},
"reference": {
"ref": "https://..."
},
"method": {
"value": "mkl"
},
"strength": {
"value": 1
},
"fixWhiteBalance": {
"value": false
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"color-matcher","inputs":{"image":{"ref":"https://..."},"reference":{"ref":"https://..."},"method":{"value":"mkl"},"strength":{"value":1},"fixWhiteBalance":{"value":false}}}'Schema
Inputs
| image* | IMAGE | ||
| reference | IMAGE | ||
| method | TEXT | mkl · hm · reinhard · mvgd · hm-mvgd-hm · hm-mkl-hm | mkl |
| strength | FLOAT | 1 | |
| fixWhiteBalance | BOOLEAN | false |
Outputs
| image | IMAGE |