getBlobSize function

Scalar getBlobSize(
  1. Mat blob
)

GetBlobSize retrieves the 4 dimensional size information in (N,C,H,W) order

Implementation

Scalar getBlobSize(Mat blob) {
  return using<Scalar>((arena) {
    return Scalar.fromNative(_bindings.Net_GetBlobSize(blob.ptr));
  });
}