ManagedCuda.NPP.NPPImage_8uC3.FilterSharpenBorder C# (CSharp) 메소드

FilterSharpenBorder() 공개 메소드

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.
리턴 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