Hi I am learning Emgu CV. I would like to perform alpha blend(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 to alpha blend these two images? (Bgr and Gray)