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

CrossCorrValid_NormLevel() public method

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

            status = NPPNativeMethods.NPPi.ImageProximity.nppiCrossCorrValid_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, "nppiCrossCorrValid_NormLevel_8u32f_C3R", status));
            buffer.Dispose();
            NPPException.CheckNppStatus(status, this);
        }

Same methods

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