[This is preliminary documentation and is subject to change.]

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.0.0 (2.0.0.0)

Syntax

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

Parameters

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

Return Value

[Missing <returns> documentation for "M:Emgu.CV.CvInvoke.cvEigenDecomposite(System.IntPtr,System.IntPtr[],System.IntPtr)"]

See Also