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

FilterSobelVertBorder() public method

Filters the image using a vertical Sobel filter kernel with border control.
public FilterSobelVertBorder ( 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 FilterSobelVertBorder(NPPImage_8uC3 dest, NppiBorderType eBorderType)
        {
            status = NPPNativeMethods.NPPi.FilterSobelVertBorder.nppiFilterSobelVertBorder_8u_C3R(_devPtr, _pitch, _sizeOriginal, _pointRoi, dest.DevicePointerRoi, dest.Pitch, dest.SizeRoi, eBorderType);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiFilterSobelVertBorder_8u_C3R", status));
            NPPException.CheckNppStatus(status, this);
        }
NPPImage_8uC3