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

CrossCorrFull_NormLevel() public method

CrossCorrFull_NormLevel. Buffer is internally allocated and freed.
public CrossCorrFull_NormLevel ( NPPImage_8uC3 tpl, NPPImage_32fC3 dst ) : void
tpl NPPImage_8uC3 template image.
dst NPPImage_32fC3 Destination image
return void
        public void CrossCorrFull_NormLevel(NPPImage_8uC3 tpl, NPPImage_32fC3 dst)
        {
            int bufferSize = FullNormLevelGetBufferHostSize();
            CudaDeviceVariable<byte> buffer = new CudaDeviceVariable<byte>(bufferSize);

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

Same methods

NPPImage_8uC3::CrossCorrFull_NormLevel ( NPPImage_8uC3 tpl, NPPImage_32fC3 dst, CudaDeviceVariable buffer ) : void
NPPImage_8uC3::CrossCorrFull_NormLevel ( NPPImage_8uC3 tpl, NPPImage_8uC3 dst, int nScaleFactor ) : void
NPPImage_8uC3::CrossCorrFull_NormLevel ( NPPImage_8uC3 tpl, NPPImage_8uC3 dst, int nScaleFactor, CudaDeviceVariable buffer ) : void
NPPImage_8uC3