atF32 method

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

Implementation

double atF32(int i0, {int? i1, int? i2}) => i1 == null
    ? ccore.cv_Mat_get_f32_1(ref, i0)
    : (i2 == null ? ccore.cv_Mat_get_f32_2(ref, i0, i1) : ccore.cv_Mat_get_f32_3(ref, i0, i1, i2));