ManagedCuda.NPP.NPPImage_8uC3.CompColorKey C# (CSharp) Method

CompColorKey() public method

packed color complement color key replacement of source image 1 by source image 2
public CompColorKey ( NPPImage_8uC3 src2, NPPImage_8uC3 dest, byte colorKeyConst ) : void
src2 NPPImage_8uC3 source2 packed pixel format image.
dest NPPImage_8uC3 Destination image
colorKeyConst byte color key constants
return void
        public void CompColorKey(NPPImage_8uC3 src2, NPPImage_8uC3 dest, byte[] colorKeyConst)
        {
            status = NPPNativeMethods.NPPi.CompColorKey.nppiCompColorKey_8u_C3R(_devPtrRoi, _pitch, src2.DevicePointerRoi, src2.Pitch, dest.DevicePointerRoi, dest.Pitch, _sizeRoi, colorKeyConst);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiCompColorKey_8u_C3R", status));
            NPPException.CheckNppStatus(status, this);
        }
NPPImage_8uC3