getBlobSize function
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));
});
}