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

Or() public method

In place image logical Or with constant.
public Or ( byte nConstant ) : void
nConstant byte Value (Array length = 3)
return void
        public void Or(byte[] nConstant)
        {
            status = NPPNativeMethods.NPPi.OrConst.nppiOrC_8u_C3IR(nConstant, _devPtrRoi, _pitch, _sizeRoi);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiOrC_8u_C3IR", status));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

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