atU8 method

int atU8(
  1. int i0, {
  2. int? i1,
  3. int? i2,
})

Implementation

int atU8(int i0, {int? i1, int? i2}) => i1 == null
    ? ccore.cv_Mat_get_u8_1(ref, i0)
    : (i2 == null ? ccore.cv_Mat_get_u8_2(ref, i0, i1) : ccore.cv_Mat_get_u8_3(ref, i0, i1, i2));