subtractU8 method

Mat subtractU8(
  1. int val, {
  2. bool inplace = false,
})

Implementation

Mat subtractU8(int val, {bool inplace = false}) {
  assert(type.depth == MatType.CV_8U && val >= CV_U8_MIN && val <= CV_U8_MAX);
  return _opInt(val, ccore.Mat_SubtractUChar, inplace: inplace);
}