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

CrossCorrFull_NormLevel() public method

CrossCorrFull_NormLevel.
public CrossCorrFull_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 CrossCorrFull_NormLevel(NPPImage_8uC3 tpl, NPPImage_32fC3 dst, CudaDeviceVariable<byte> buffer)
        {
            int bufferSize = FullNormLevelGetBufferHostSize();
            if (bufferSize > buffer.Size) throw new NPPException("Provided buffer is too small.");

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

Same methods

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