async version of imdecode
Future<Mat> imdecodeAsync(Uint8List buf, int flags, {Mat? dst}) async { final vec = VecUChar.fromList(buf); return imdecodeVecAsync(vec, flags, dst: dst); }