Skip to content

Commit

Permalink
fix(api): correct blending mask (fixes #188)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Feb 19, 2023
1 parent c459e96 commit f561dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/onnx_web/chain/blend_mask.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def blend_mask(
for s in sources
]

return Image.composite(resized[0], resized[1], mult_mask)
return Image.composite(resized[1], resized[0], mult_mask)

0 comments on commit f561dfa

Please sign in to comment.