blendLinear function
Implementation
VARP blendLinear(VARP src1, VARP src2, VARP weight1, VARP weight2) {
final pOut = c.mnn_cv_blendLinear(src1.ptr, src2.ptr, weight1.ptr, weight2.ptr);
final rval = VARP.fromPointer(pOut);
return rval;
}
VARP blendLinear(VARP src1, VARP src2, VARP weight1, VARP weight2) {
final pOut = c.mnn_cv_blendLinear(src1.ptr, src2.ptr, weight1.ptr, weight2.ptr);
final rval = VARP.fromPointer(pOut);
return rval;
}