imagesFromBlobAsync function

Future<VecMat> imagesFromBlobAsync(
  1. Mat blob
)

Implementation

Future<VecMat> imagesFromBlobAsync(Mat blob) async {
  final mats = VecMat();
  return cvRunAsync0(
    (callback) => cdnn.cv_dnn_imagesFromBlob(blob.ref, mats.ptr, callback),
    (c) {
      return c.complete(mats);
    },
  );
}