step property

(int, int, int) get step

number of bytes each matrix element/row/plane/dimension occupies

Implementation

(int, int, int) get step {
  final ms = ccore.cv_UMat_step(ref);
  return (ms.p[0], ms.p[1], ms.p[2]);
}