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

FilterSharpenBorder() public method

Sharpen filter.
public FilterSharpenBorder ( NPPImage_8uC3 dst, NppiBorderType eBorderType ) : void
dst NPPImage_8uC3 Destination-Image
eBorderType NppiBorderType The border type operation to be applied at source image border boundaries.
return void
        public void FilterSharpenBorder(NPPImage_8uC3 dst, NppiBorderType eBorderType)
        {
            status = NPPNativeMethods.NPPi.FixedFilters.nppiFilterSharpenBorder_8u_C3R(_devPtr, _pitch, _sizeOriginal, _pointRoi, dst.DevicePointerRoi, dst.Pitch, _sizeRoi, eBorderType);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiFilterSharpenBorder_8u_C3R", status));
            NPPException.CheckNppStatus(status, this);
        }
NPPImage_8uC3