Same as imdecode but accepts VecUChar
Mat imdecodeVec(VecUChar buf, int flags, {Mat? dst}) { dst ??= Mat.empty(); cvRun(() => cimgcodecs.cv_imdecode(buf.ref, flags, dst!.ptr, ffi.nullptr)); return dst; }