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

CrossCorrValid_NormLevel() public method

CrossCorrValid_NormLevel.
public CrossCorrValid_NormLevel ( NPPImage_8uC3 tpl, NPPImage_32fC3 dst, CudaDeviceVariable buffer ) : void
tpl NPPImage_8uC3 template image.
dst NPPImage_32fC3 Destination image
buffer CudaDeviceVariable Allocated device memory with size of at
return void
        public void CrossCorrValid_NormLevel(NPPImage_8uC3 tpl, NPPImage_32fC3 dst, CudaDeviceVariable<byte> buffer)
        {
            int bufferSize = ValidNormLevelGetBufferHostSize();
            if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");

            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));
            NPPException.CheckNppStatus(status, this);
        }

Same methods

NPPImage_8uC3::CrossCorrValid_NormLevel ( NPPImage_8uC3 tpl, NPPImage_32fC3 dst ) : 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