【发布时间】:2012-12-30 09:12:23
【问题描述】:
您好,我正在学习 Emgu CV。我想执行 alpha blend(addWeighted)。我有以下代码
Image<Bgr, Byte> image = new Image<Bgr, Byte>(filename);
Image<Gray, Byte> grayImage = image.Convert<Gray, Byte>();
Image<Bgr, Byte> blendImage;
如何对这两张图片进行 Alpha 混合? (Bgr 和灰色)
【问题讨论】:
-
This question 可能会有所帮助。
标签: alphablending emgucv computer-vision