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

ThresholdLT() public method

Image threshold. If for a comparison operations sourcePixel is less than nThreshold is true, the pixel is set to nThreshold, otherwise it is set to sourcePixel.
public ThresholdLT ( NPPImage_16sC3 dest, short nThreshold ) : void
dest NPPImage_16sC3 Destination image
nThreshold short The threshold value.
return void
        public void ThresholdLT(NPPImage_16sC3 dest, short[] nThreshold)
        {
            status = NPPNativeMethods.NPPi.Threshold.nppiThreshold_LT_16s_C3R(_devPtrRoi, _pitch, dest.DevicePointerRoi, dest.Pitch, _sizeRoi, nThreshold);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiThreshold_LT_16s_C3R", status));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_16sC3::ThresholdLT ( NPPImage_16sC3 dest, short nThreshold, short nValue ) : void
NPPImage_16sC3::ThresholdLT ( short nThreshold ) : void
NPPImage_16sC3::ThresholdLT ( short nThreshold, short nValue ) : void
NPPImage_16sC3