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

Dilate3x3Border() public method

3x3 dilation with border control.
public Dilate3x3Border ( NPPImage_8uC3 dest, NppiBorderType eBorderType ) : void
dest NPPImage_8uC3 Destination image
eBorderType NppiBorderType The border type operation to be applied at source image border boundaries.
return void
        public void Dilate3x3Border(NPPImage_8uC3 dest, NppiBorderType eBorderType)
        {
            status = NPPNativeMethods.NPPi.Dilate3x3Border.nppiDilate3x3Border_8u_C3R(_devPtr, _pitch, _sizeOriginal, _pointRoi, dest.DevicePointerRoi, dest.Pitch, _sizeRoi, eBorderType);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiDilate3x3Border_8u_C3R", status));
            NPPException.CheckNppStatus(status, this);
        }
NPPImage_8uC3