使用emgu.cv的Alpha合成图像

时间:2014-07-10 16:36:15

标签: c# opencv emgucv

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的访问。

是否有可以进行alpha合成的OpenCV C#包装器库?

AddWeighted不能做我需要做的事。

虽然类似,但question没有提供答案

1 个答案:

答案 0 :(得分:3)

如此简单。

    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;
    }