Calculates all decomposition coefficients for the input object using the previously calculated eigen objects basis and the averaged object

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static float[] cvEigenDecomposite(
	IntPtr obj,
	IntPtr[] eigInput,
	IntPtr avg
)
Visual Basic (Declaration)
Public Shared Function cvEigenDecomposite ( _
	obj As IntPtr, _
	eigInput As IntPtr(), _
	avg As IntPtr _
) As Single()
Visual C++
public:
static array<float>^ cvEigenDecomposite(
	IntPtr obj, 
	array<IntPtr>^ eigInput, 
	IntPtr avg
)

Parameters

obj
Type: System..::.IntPtr
Input object (Pointer to IplImage)
eigInput
Type: array< System..::.IntPtr >[]()[]
Pointer to the array of IplImage input objects
avg
Type: System..::.IntPtr
Averaged object (Pointer to IplImage)

Return Value

Calculated coefficients; an output parameter

See Also