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

Mul() public method

In place image multiplication and scale by max bit width value
public Mul ( NPPImage_8uC3 src2 ) : void
src2 NPPImage_8uC3 2nd source image
return void
        public void Mul(NPPImage_8uC3 src2)
        {
            status = NPPNativeMethods.NPPi.MulScale.nppiMulScale_8u_C3IR(src2.DevicePointerRoi, src2.Pitch, _devPtrRoi, _pitch, _sizeRoi);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiMulScale_8u_C3IR", status));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::Mul ( NPPImage_8uC3 src2, NPPImage_8uC3 dest ) : void
NPPImage_8uC3::Mul ( NPPImage_8uC3 src2, NPPImage_8uC3 dest, int nScaleFactor ) : void
NPPImage_8uC3::Mul ( NPPImage_8uC3 src2, int nScaleFactor ) : void
NPPImage_8uC3::Mul ( byte nConstant ) : void
NPPImage_8uC3::Mul ( byte nConstant, NPPImage_8uC3 dest ) : void
NPPImage_8uC3::Mul ( byte nConstant, NPPImage_8uC3 dest, int nScaleFactor ) : void
NPPImage_8uC3::Mul ( byte nConstant, int nScaleFactor ) : void
NPPImage_8uC3