http://www.emgu.com
Returns the squared sum of matrix elements.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static MCvScalar SqrSum(
IInputArray src,
IInputArray mask = null
)
Public Shared Function SqrSum (
src As IInputArray,
Optional mask As IInputArray = Nothing
) As MCvScalar
public:
static MCvScalar SqrSum(
IInputArray^ src,
IInputArray^ mask = nullptr
)
static member SqrSum :
src : IInputArray *
?mask : IInputArray
(* Defaults:
let _mask = defaultArg mask null
*)
-> MCvScalar
Parameters
- src
- Type: Emgu.CVIInputArray
Source image of any depth except for CV_64F. - mask (Optional)
- Type: Emgu.CVIInputArray
optional operation mask; it must have the same size as src1 and CV_8UC1 type.
Return Value
Type:
MCvScalarThe squared sum of matrix elements.
See Also