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

NormRel_L1() public method

image NormRel_L1.
public NormRel_L1 ( NPPImage_8uC3 tpl, CudaDeviceVariable pNormRel, int nCOI, NPPImage_8uC1 pMask, CudaDeviceVariable buffer ) : void
tpl NPPImage_8uC3 template image.
pNormRel CudaDeviceVariable Pointer to the computed relative error for the infinity norm of two images. (1 * sizeof(double))
nCOI int channel of interest.
pMask NPPImage_8uC1 Mask image.
buffer CudaDeviceVariable Allocated device memory with size of at
return void
        public void NormRel_L1(NPPImage_8uC3 tpl, CudaDeviceVariable<double> pNormRel, int nCOI, NPPImage_8uC1 pMask, CudaDeviceVariable<byte> buffer)
        {
            int bufferSize = NormRelL1MaskedGetBufferHostSize();
            if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");

            status = NPPNativeMethods.NPPi.NormRel.nppiNormRel_L1_8u_C3CMR(_devPtrRoi, _pitch, tpl.DevicePointerRoi, tpl.Pitch, pMask.DevicePointerRoi, pMask.Pitch, _sizeRoi, nCOI, pNormRel.DevicePointer, buffer.DevicePointer);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiNormRel_L1_8u_C3CMR", status));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::NormRel_L1 ( NPPImage_8uC3 tpl, CudaDeviceVariable pNormRel ) : void
NPPImage_8uC3::NormRel_L1 ( NPPImage_8uC3 tpl, CudaDeviceVariable pNormRel, CudaDeviceVariable buffer ) : void
NPPImage_8uC3::NormRel_L1 ( NPPImage_8uC3 tpl, CudaDeviceVariable pNormRel, int nCOI, NPPImage_8uC1 pMask ) : void
NPPImage_8uC3