getBlobSize function
GetBlobSize retrieves the 4 dimensional size information in (N,C,H,W) order
Implementation
VecI32 getBlobSize(Mat blob) {
final s = VecI32();
cvRun(() => cdnn.cv_dnn_getBlobSize(blob.ref, s.ptr));
return s;
}
GetBlobSize retrieves the 4 dimensional size information in (N,C,H,W) order
VecI32 getBlobSize(Mat blob) {
final s = VecI32();
cvRun(() => cdnn.cv_dnn_getBlobSize(blob.ref, s.ptr));
return s;
}