addF32 method

Mat addF32(
  1. double val, {
  2. bool inplace = false,
})

Implementation

Mat addF32(double val, {bool inplace = false}) {
  assert(type.depth == MatType.CV_32F && val <= CV_F32_MAX);
  return _opDouble(val, ccore.Mat_AddFloat, inplace: inplace);
}