Calculates an object projection to the eigen sub-space or, in other words, restores an object using previously calculated eigen objects basis, averaged object, and decomposition coefficients of the restored object.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)
Syntax
| | | | | | | | |
| C# | | | Visual Basic | | | Visual C++ | |
Public Shared Sub cvEigenProjection ( _
inputVecs As IntPtr(), _
coeffs As Single(), _
avg As IntPtr, _
proj As IntPtr _
)
Parameters
- inputVecs
- array<IntPtr>[]()[][]
Pointer to either an array of IplImage input objects or to a callback function, depending on io_flags
- coeffs
- array<Single>[]()[][]
Previously calculated decomposition coefficients
- avg
- IntPtr
Average vector
- proj
- IntPtr
Projection to the eigen sub-space
See Also