Given the eigen value, reconstruct the projected image

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

Syntax

C#
public Image<Gray, byte> EigenProjection(
	float[] eigenValue
)
Visual Basic (Declaration)
Public Function EigenProjection ( _
	eigenValue As Single() _
) As Image(Of Gray, Byte)
Visual C++
public:
Image<Gray, unsigned char>^ EigenProjection(
	array<float>^ eigenValue
)

Parameters

eigenValue
Type: array< System..::.Single >[]()[]
The eigen values

Return Value

The projected image

See Also