Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Try to set your background before image copying:

Mat res(image.size(), image.type());

// fill background
res.setTo(Scalar::all(255)); // white

// copy foreground
image.copyTo(res, binMask);