How can I overlay two images? Essentially I have a background with no alpha channel and than one or more images that have alpha channel that need to be overlaid on top of each other.
I have tried the following code but the overlay result is horrible:
// create our out image
Mat merged (info.width, info.height, CV_8UC4);
// get layers
Mat layer1Image = imread(layer1Path);
Mat layer2Image = imread(layer2Path);
addWeighted(layer1Image, 0.5, layer2Image, 0.5, 0.0, merged);
I also tried using merge but I read somewhere that it doesn’t support alpha channel?
I don’t know about a OpenCV function that does this. But you could just implement it yourself. It is similar to the
addWeightedfunction. But instead of a fixed weight of0.5the weights are computed from the alpha channel of the overlay image.Note that I was not able to read in a file with the alpha channel because apparently OpenCV does not support this. That’s why I computed an alpha value from the coordinates to get some kind of gradient.