ManagedCuda.NPP.NPPImage_8uC3.ThresholdLT C# (CSharp) Méthode

ThresholdLT() public méthode

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

Same methods

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