使用emgu.cv的Alpha合成图像

本文关键字:图像 Alpha emgu cv 使用 | 更新日期: 2023-09-27 18:12:26

Emgu。CV(Nuget包2.4.2(并没有实现OpenCV中可用的gpu::alphaComp方法。

因此,当试图实现这种特定类型的复合时,它在C#中的速度慢得令人难以置信,以至于它占据了我的应用程序总cpu使用量的80%。

这是我最初的解决方案,性能非常差。

    static public Image<Bgra, Byte> Overlay( Image<Bgra, Byte> image1, Image<Bgra, Byte> image2 )
    {
        Image<Bgra, Byte> result = image1.Copy();
        Image<Bgra, Byte> src = image2;
        Image<Bgra, Byte> dst = image1;
        int rows = result.Rows;
        int cols = result.Cols;
        for (int y = 0; y < rows; ++y)
        {
            for (int x = 0; x < cols; ++x)
            {
                // http://en.wikipedia.org/wiki/Alpha_compositing
                double  srcA = 1.0/255 * src.Data[y, x, 3];
                double dstA = 1.0/255 * dst.Data[y, x, 3];
                double outA = (srcA + (dstA - dstA * srcA));
                result.Data[y, x, 0] = (Byte)(((src.Data[y, x, 0] * srcA) + (dst.Data[y, x, 0] * (1 - srcA))) / outA);  // Blue
                result.Data[y, x, 1] = (Byte)(((src.Data[y, x, 1] * srcA) + (dst.Data[y, x, 1] * (1 - srcA))) / outA);  // Green
                result.Data[y, x, 2] = (Byte)(((src.Data[y, x, 2] * srcA) + (dst.Data[y, x, 2] * (1 - srcA))) / outA); // Red
                result.Data[y, x, 3] = (Byte)(outA*255);
            }
        }
        return result;
    }

有没有一种方法可以在C#中优化上述内容?

我还研究了使用OpencvSharp,但这似乎也不提供对gpu::alphaComp的访问。

有没有任何OpenCV C#包装器库可以进行alpha合成?

AddWeighted不做我需要它做的事情。

虽然类似,但这个问题并没有提供答案

使用emgu.cv的Alpha合成图像

这么简单。

    public static Image<Bgra, Byte> Overlay(Image<Bgra, Byte> target, Image<Bgra, Byte> overlay)
    {
        Bitmap bmp = target.Bitmap;
        Graphics gra = Graphics.FromImage(bmp);
        gra.CompositingMode = System.Drawing.Drawing2D.CompositingMode.SourceOver;
        gra.DrawImage(overlay.Bitmap, new Point(0, 0));
        return target;
    }