boxFilter function
Implementation
VARP boxFilter(
VARP src,
int ddepth,
(int, int) ksize, {
bool normalize = true,
int borderType = BORDER_REFLECT,
}) {
final cKsize = Size.fromTuple(ksize);
final pOut = c.mnn_cv_boxFilter(src.ptr, ddepth, cKsize.ref, normalize, borderType);
final rval = VARP.fromPointer(pOut);
cKsize.dispose();
return rval;
}