Net.fromCaffeBytes constructor
Reads a network model stored in Caffe model in memory. https://docs.opencv.org/4.x/d6/d0f/group__dnn.html#ga5b1fd56ca658f10c3bd544ea46f57164
Implementation
factory Net.fromCaffeBytes(Uint8List bufferProto, Uint8List bufferModel) {
final p = calloc<cvg.Net>();
final bufP = VecUChar.fromList(bufferProto);
final bufM = VecUChar.fromList(bufferModel);
cvRun(() => cdnn.cv_dnn_Net_readNetFromCaffeBytes(bufP.ref, bufM.ref, p, ffi.nullptr));
final net = Net._(p);
return net;
}