人脸检测的model类facemodel

这个类主要就是人脸检测用到的实体模型

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace face
{
   public class facemodel
    {
       //年龄
        public string age { get; set; }
       //美丑
        public string beauty { get; set; }
       //表情
        public string expression { get; set; }
       //性别
        public string gender { get; set; }
       //是否戴眼镜
        public string glasses { get; set; }
       //人种
        public string race { get; set; }


    }
}
原文地址:https://www.cnblogs.com/a1111/p/12816125.html