Hi, I am studying the resume of Emgu. I would like to execute an alpha mix (addWeighted). I have the following codes
Image<Bgr, Byte> image = new Image<Bgr, Byte>(filename); Image<Gray, Byte> grayImage = image.Convert<Gray, Byte>(); Image<Bgr, Byte> blendImage;
How alpha mix these two images? (Bgr and Gray)
source share