You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOTContainer.Model
|
|
{
|
|
public class FaceDataModel
|
|
{
|
|
public string GenderMale { get; set; }
|
|
|
|
public string Age { get; set; }
|
|
|
|
public int StopTime { get; set; }
|
|
|
|
public DateTime BeginTime { get; set; }
|
|
|
|
public DateTime EndTime { get; set; }
|
|
|
|
public string IP { get; set; }
|
|
}
|
|
public class FaceSendModel
|
|
{
|
|
public int age { get; set; }
|
|
public string vipId { get; set; }
|
|
public string faceID { get; set; }
|
|
public string carNo { get; set; }
|
|
public string genderMale { get; set; }
|
|
public string faceImage { get; set; }
|
|
public string isOK { get; set; }
|
|
}
|
|
public class DetectModel
|
|
{
|
|
public int max_detect_num { get; set; }
|
|
public int min_face_size { get; set; }
|
|
public int scale_ratio { get; set; }
|
|
public float not_face_thr { get; set; }
|
|
}
|
|
}
|
|
|