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

Exp() public method

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

Same methods

NPPImage_16sC3::Exp ( int nScaleFactor ) : void
NPPImage_16sC3