col method

UMat col(
  1. int i
)

returns a new matrix header for the specified column

Implementation

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