Emgu.CV.HOGDescriptor.GetDefaultPeopleDetector C# (CSharp) Метод

GetDefaultPeopleDetector() публичный статический Метод

Return the default people detector
public static GetDefaultPeopleDetector ( ) : float[]
Результат float[]
        public static float[] GetDefaultPeopleDetector()
        {
            using (MemStorage stor = new MemStorage())
             {
            Seq<float> desc = new Seq<float>(stor);
            CvInvoke.CvHOGDescriptorPeopleDetectorCreate(desc);
            return desc.ToArray();
             }
        }