|  | OpenCV
    4.1.0
    Open Source Computer Vision | 
| Functions | |
| void | cv::sfm::meanAndVarianceAlongRows (InputArray A, OutputArray mean, OutputArray variance) | 
| Computes the mean and variance of a given matrix along its rows. | |
| Mat | cv::sfm::skew (InputArray x) | 
| Returns the 3x3 skew symmetric matrix of a vector. | |
| void cv::sfm::meanAndVarianceAlongRows | ( | InputArray | A, | 
| OutputArray | mean, | ||
| OutputArray | variance | ||
| ) | 
Computes the mean and variance of a given matrix along its rows.
| A | Input NxN matrix. | 
| mean | Output Nx1 matrix with computed mean. | 
| variance | Output Nx1 matrix with computed variance. | 
It computes in the same way as woud do reduce but with Variance function.
| Mat cv::sfm::skew | ( | InputArray | x | ) | 
Returns the 3x3 skew symmetric matrix of a vector.
| x | Input 3x1 vector. | 
Reference:HartleyZ00, p581, equation (A4.5).
 1.8.3
 1.8.3