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

ThresholdGT() public method

In place image threshold. If for a comparison operations sourcePixel is greater than nThreshold is true, the pixel is set to nThreshold, otherwise it is set to sourcePixel.
public ThresholdGT ( byte nThreshold ) : void
nThreshold byte The threshold value.
return void
        public void ThresholdGT(byte[] nThreshold)
        {
            status = NPPNativeMethods.NPPi.Threshold.nppiThreshold_GT_8u_C3IR(_devPtrRoi, _pitch, _sizeRoi, nThreshold);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiThreshold_GT_8u_C3IR", status));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::ThresholdGT ( NPPImage_8uC3 dest, byte nThreshold ) : void
NPPImage_8uC3::ThresholdGT ( NPPImage_8uC3 dest, byte nThreshold, byte nValue ) : void
NPPImage_8uC3::ThresholdGT ( byte nThreshold, byte nValue ) : void
NPPImage_8uC3