imagesFromBlobAsync function

Future<List<Mat>> imagesFromBlobAsync(
  1. Mat blob
)

Implementation

Future<List<Mat>> imagesFromBlobAsync(Mat blob) async {
  final rval = cvRunAsync<List<Mat>>(
    (callback) => cdnn.Net_ImagesFromBlob_Async(blob.ref, callback),
    (c, result) => c.complete(VecMat.fromPointer(result.cast<cdnn.VecMat>()).toList()),
  );
  return rval;
}