Calculates the object projection into the eigen sub-space.
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void EigenProjection( CvCallback inputVecs, int eigenvecCount, EigenObjectsIOFlag ioFlags, IntPtr userdata, float[] coeffs, IplImage avg, IplImage proj )
Parameters
- inputVecs
- Type: OpenCvSharpCvCallback
Pointer to to a callback function, depending on io_flags. - eigenvecCount
- Type: SystemInt32
Number of eigenvectors. - ioFlags
- Type: OpenCvSharpEigenObjectsIOFlag
Input/output flags - userdata
- Type: SystemIntPtr
Pointer to the structure that contains all of the necessary data for the callback functions. - coeffs
- Type: SystemSingle
Previously calculated decomposition coefficients. - avg
- Type: OpenCvSharpIplImage
Average vector - proj
- Type: OpenCvSharpIplImage
Projection to the eigen sub-space.
See Also