Emgu.CV.EigenObjectRecognizer.EigenProjection C# (CSharp) Метод

EigenProjection() публичный Метод

Given the eigen value, reconstruct the projected image
public EigenProjection ( float eigenValue ) : Byte>.Image
eigenValue float The eigen values
Результат Byte>.Image
        public Image<Gray, Byte> EigenProjection(float[] eigenValue)
        {
            Image<Gray, Byte> res = new Image<Gray, byte>(_avgImage.Width, _avgImage.Height);
             CvInvoke.cvEigenProjection(
             Array.ConvertAll<Image<Gray, Single>, IntPtr>(_eigenImages, delegate(Image<Gray, Single> img) { return img.Ptr; }),
             eigenValue,
             _avgImage.Ptr,
             res.Ptr);
             return res;
        }