First time here? Check out the FAQ!
answered Jun 11 '13
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);