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

Exp() public method

Exponential, scale by 2^(-nScaleFactor), then clamp to saturated value.
public Exp ( NPPImage_8uC3 dest, int nScaleFactor ) : void
dest NPPImage_8uC3 Destination image
nScaleFactor int scaling factor
return void
        public void Exp(NPPImage_8uC3 dest, int nScaleFactor)
        {
            status = NPPNativeMethods.NPPi.Exp.nppiExp_8u_C3RSfs(_devPtrRoi, _pitch, dest.DevicePointerRoi, dest.Pitch, _sizeRoi, nScaleFactor);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiExp_8u_C3RSfs", status));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::Exp ( int nScaleFactor ) : void
NPPImage_8uC3