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

NormRel_Inf() public method

image NormRel_Inf. Buffer is internally allocated and freed.
public NormRel_Inf ( NPPImage_16sC3 tpl, CudaDeviceVariable pNormRel ) : void
tpl NPPImage_16sC3 template image.
pNormRel CudaDeviceVariable Pointer to the computed relative error for the infinity norm of two images. (3 * sizeof(double))
return void
        public void NormRel_Inf(NPPImage_16sC3 tpl, CudaDeviceVariable<double> pNormRel)
        {
            int bufferSize = NormRelInfGetBufferHostSize();
            CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);

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

Same methods

NPPImage_16sC3::NormRel_Inf ( NPPImage_16sC3 tpl, CudaDeviceVariable pNormRel, CudaDeviceVariable buffer ) : void
NPPImage_16sC3