interp function
Implementation
VARP interp(
List<VARP> xs,
double widthScale,
double heightScale,
int outputWidth,
int outputHeight,
int resizeType,
bool alignCorners,
) {
final xsPtr = xs.toNativeVec();
final rval = VARP.fromPointer(
C.mnn_expr_Interp(
xsPtr.ptr,
widthScale,
heightScale,
outputWidth,
outputHeight,
resizeType,
alignCorners,
),
);
xsPtr.dispose();
return rval;
}