Reconstructs the original vectors from the projection coefficients
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void BackProjectPCA( CvArr proj, CvArr avg, CvArr eigenvects, CvArr result )
Parameters
- proj
- Type: OpenCvSharpCvArr
The input data; in the same format as result in cvProjectPCA. - avg
- Type: OpenCvSharpCvArr
The mean (average) vector. If it is a single-row vector, it means that the output vectors are stored as rows of result; otherwise, it should be a single-column vector, then the vectors are stored as columns of result. - eigenvects
- Type: OpenCvSharpCvArr
The eigenvectors (principal components); one vector per row. - result
- Type: OpenCvSharpCvArr
The output matrix of reconstructed vectors.
Return Value
Type:See Also