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

NormL2() public method

image L2 norm. Buffer is internally allocated and freed.
public NormL2 ( CudaDeviceVariable norm ) : void
norm CudaDeviceVariable Allocated device memory with size of at least 3 * sizeof(double)
return void
        public void NormL2(CudaDeviceVariable<double> norm)
        {
            int bufferSize = NormL2GetBufferHostSize();
            CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);

            status = NPPNativeMethods.NPPi.NormL2.nppiNorm_L2_8u_C3R(_devPtrRoi, _pitch, _sizeRoi, norm.DevicePointer, buffer.DevicePointer);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiNorm_L2_8u_C3R", status));
            buffer.Dispose();
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::NormL2 ( CudaDeviceVariable norm, CudaDeviceVariable buffer ) : void
NPPImage_8uC3::NormL2 ( int coi, CudaDeviceVariable norm, NPPImage_8uC1 mask ) : void
NPPImage_8uC3::NormL2 ( int coi, CudaDeviceVariable norm, NPPImage_8uC1 mask, CudaDeviceVariable buffer ) : void
NPPImage_8uC3