gpt4 book ai didi

alphablending - Emgu CV 中的 Alpha 混合

转载 作者:行者123 更新时间:2023-12-01 06:36:48 26 4
gpt4 key购买 nike

嗨,我正在学习 Emgu CV。我想执行 alpha 混合(addWeighted)。我有以下代码

Image<Bgr, Byte> image = new Image<Bgr, Byte>(filename);
Image<Gray, Byte> grayImage = image.Convert<Gray, Byte>();
Image<Bgr, Byte> blendImage;

如何 alpha 混合这两个图像? (Bgr 和格雷)

最佳答案

尝试将灰度图像转换回彩色,然后将它们混合。

Image<Bgr, Byte> grayBGRImage = grayImage.Convert<Bgr, Byte>();
double alpha = 0.5; // Or however you would like to blend them
double beta = 1 - alpha;
double gamma = 0;
Image<Bgr, Byte> blendImage = image.AddWeighted(grayBGRImage, alpha, beta, gamma);

关于alphablending - Emgu CV 中的 Alpha 混合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14089609/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com