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

And() public method

Image logical and with constant.
public And ( byte nConstant, NPPImage_8uC3 dest ) : void
nConstant byte Value (Array length = 3)
dest NPPImage_8uC3 Destination image
return void
        public void And(byte[] nConstant, NPPImage_8uC3 dest)
        {
            status = NPPNativeMethods.NPPi.AndConst.nppiAndC_8u_C3R(_devPtrRoi, _pitch, nConstant, dest.DevicePointerRoi, dest.Pitch, _sizeRoi);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiAdd_8u_C3RSfs", status));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::And ( NPPImage_8uC3 src2 ) : void
NPPImage_8uC3::And ( NPPImage_8uC3 src2, NPPImage_8uC3 dest ) : void
NPPImage_8uC3::And ( byte nConstant ) : void
NPPImage_8uC3