MatConvertScaleAbs Method
|
Scales, computes absolute values and converts the result to 8-bit.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic Mat ConvertScaleAbs(
double alpha = 1,
double beta = 0
)
Public Function ConvertScaleAbs (
Optional alpha As Double = 1,
Optional beta As Double = 0
) As Mat
public:
Mat^ ConvertScaleAbs(
double alpha = 1,
double beta = 0
)
member ConvertScaleAbs :
?alpha : float *
?beta : float
(* Defaults:
let _alpha = defaultArg alpha 1
let _beta = defaultArg beta 0
*)
-> Mat
function ConvertScaleAbs(alpha, beta);
Parameters
- alpha (Optional)
- Type: SystemDouble
The optional scale factor. [By default this is 1] - beta (Optional)
- Type: SystemDouble
The optional delta added to the scaled values. [By default this is 0]
Return Value
Type:
Mat
See Also