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

NormInfMaskedGetBufferHostSize() public method

Scratch-buffer size for Norm inf (masked).
public NormInfMaskedGetBufferHostSize ( ) : int
return int
        public int NormInfMaskedGetBufferHostSize()
        {
            int bufferSize = 0;
            status = NPPNativeMethods.NPPi.NormInf.nppiNormInfGetBufferHostSize_8u_C3CMR(_sizeRoi, ref bufferSize);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiNormInfGetBufferHostSize_8u_C3CMR", status));
            NPPException.CheckNppStatus(status, this);
            return bufferSize;
        }
NPPImage_8uC3