ManagedCuda.NPP.NPPImage_8uC3.Or C# (CSharp) Méthode

Or() public méthode

Image logical Or with constant.
public Or ( byte nConstant, NPPImage_8uC3 dest ) : void
nConstant byte Value (Array length = 3)
dest NPPImage_8uC3 Destination image
Résultat void
        public void Or(byte[] nConstant, NPPImage_8uC3 dest)
        {
            status = NPPNativeMethods.NPPi.OrConst.nppiOrC_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::Or ( NPPImage_8uC3 src2 ) : void
NPPImage_8uC3::Or ( NPPImage_8uC3 src2, NPPImage_8uC3 dest ) : void
NPPImage_8uC3::Or ( byte nConstant ) : void
NPPImage_8uC3