ManagedCuda.NPP.NPPImage_16sC3.FilterLowPassBorder C# (CSharp) Method

FilterLowPassBorder() public method

Low pass filter.
public FilterLowPassBorder ( NPPImage_16sC3 dst, MaskSize eMaskSize, NppiBorderType eBorderType ) : void
dst NPPImage_16sC3 Destination-Image
eMaskSize MaskSize Enumeration value specifying the mask size.
eBorderType NppiBorderType The border type operation to be applied at source image border boundaries.
return void
        public void FilterLowPassBorder(NPPImage_16sC3 dst, MaskSize eMaskSize, NppiBorderType eBorderType)
        {
            status = NPPNativeMethods.NPPi.FixedFilters.nppiFilterLowPassBorder_16s_C3R(_devPtr, _pitch, _sizeOriginal, _pointRoi, dst.DevicePointerRoi, dst.Pitch, _sizeRoi, eMaskSize, eBorderType);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiFilterLowPassBorder_16s_C3R", status));
            NPPException.CheckNppStatus(status, this);
        }
NPPImage_16sC3