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

SumWindowRow() public method

8-bit unsigned 1D (row) sum to 32f. Apply Row Window Summation filter over a 1D mask region around each source pixel for 3-channel 8-bit pixel input images with 32-bit floating point output. Result 32-bit floating point pixel is equal to the sum of the corresponding and neighboring row pixel values in a mask region of the source image defined by nKernelDim and nAnchorX.
public SumWindowRow ( NPPImage_32fC3 dest, int nMaskSize, int nAnchor ) : void
dest NPPImage_32fC3 Destination image
nMaskSize int Length of the linear kernel array.
nAnchor int X offset of the kernel origin frame of reference w.r.t the source pixel.
return void
        public void SumWindowRow(NPPImage_32fC3 dest, int nMaskSize, int nAnchor)
        {
            status = NPPNativeMethods.NPPi.WindowSum1D.nppiSumWindowRow_8u32f_C3R(_devPtrRoi, _pitch, dest.DevicePointerRoi, dest.Pitch, _sizeRoi, nMaskSize, nAnchor);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiSumWindowRow_8u32f_C3R", status));
            NPPException.CheckNppStatus(status, this);
        }
NPPImage_8uC3