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

LShiftC() public method

image bit shift by constant (left), inplace.
public LShiftC ( uint nConstant ) : void
nConstant uint Constant (Array length = 3)
return void
        public void LShiftC(uint[] nConstant)
        {
            status = NPPNativeMethods.NPPi.LeftShiftConst.nppiLShiftC_8u_C3IR(nConstant, _devPtrRoi, _pitch, _sizeRoi);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiLShiftC_8u_C3IR", status));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::LShiftC ( uint nConstant, NPPImage_8uC3 dest ) : void
NPPImage_8uC3