fromCaffeBytesAsync static method
Implementation
static Future<Net> fromCaffeBytesAsync(Uint8List bufferProto, Uint8List bufferModel) async {
final bufP = VecUChar.fromList(bufferProto);
final bufM = VecUChar.fromList(bufferModel);
final rval = await cvRunAsync<Net>(
(callback) => cdnn.Net_ReadNetFromCaffeBytes_Async(bufP.ref, bufM.ref, callback), (c, p) {
return c.complete(Net.fromPointer(p.cast<cdnn.Net>()));
});
return rval;
}