divideMat method

Mat divideMat(
  1. Mat other, {
  2. bool inplace = false,
})

Implementation

Mat divideMat(Mat other, {bool inplace = false}) =>
    _opMat(other, ccore.cv_Mat_op_div_mat, inplace: inplace);