簡體   English   中英

使用emgu.cv的Alpha合成圖像

[英]Alpha composite images using emgu.cv

據我所知,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不執行我需要執行的操作。

雖然相似,但這個問題並未提供答案

如此簡單。

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM