blendLinear function

VARP blendLinear(
  1. VARP src1,
  2. VARP src2,
  3. VARP weight1,
  4. VARP weight2,
)

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;
}