subtractMat method

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

Implementation

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