/// <summary> /// Release this <see cref="Convolution"/>. /// </summary> public void Dispose() { Convolution thisReference = this; VX.Release(ref thisReference); _Reference = thisReference._Reference; }
public static Status Convolve(Context context, Image input, Convolution conv, Image output) { Status retValue; Debug.Assert(Delegates.pvxuConvolve != null, "pvxuConvolve not implemented"); retValue = Delegates.pvxuConvolve(context, input, conv, output); LogCommand("vxuConvolve", retValue, context, input, conv, output); DebugCheckErrors(retValue); return(retValue); }