| MatAccumulateSquare Method  | 
        
         
            Adds the square of a source image to the accumulator.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Mat AccumulateSquare(
	InputArray mask
)
Public Function AccumulateSquare ( 
	mask As InputArray
) As Mat
public:
Mat^ AccumulateSquare(
	InputArray^ mask
)
member AccumulateSquare : 
        mask : InputArray -> Mat 
function AccumulateSquare(mask);
Parameters
- mask
- Type: OpenCvSharpInputArray
 Optional operation mask.
Return Value
Type: 
MatAccumulator image with the same number of channels as input image, 32-bit or 64-bit floating-point.
 See Also
See Also