row method

UMat row(
  1. int i
)

returns a new matrix header for the specified row

Implementation

UMat row(int i) {
  final p = calloc<cvg.UMat>();
  cvRun(() => ccore.cv_UMat_row(ref, i, p, ffi.nullptr));
  return UMat._(p);
}