1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using OpenCvSharp;
- using SmartCoalApplication.Annotation;
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SmartCoalApplication.AutomaticMeasurement
- {
- public class MeasureInfoModel
- {
- public int[] pictureNumber { get; set; }
- public int[] yiceliangNumber { get; set; }
- public int[] successNumber { get; set; }
- public int[] failNumber { get; set; }
- public List<string> text { get; set; }
- public int stop { get; set; }
- /// <summary>
- ///
- /// </summary>
- public Dictionary<string, List<Mat>> everyHoleImg { get; set; }
- public Dictionary<string, List<string>> everyHoleImgName { get; set; }
- public Dictionary<int, List<GraphicsList>> everyHoleImgGraphicsList { get; set; }
- public Dictionary<int, List<bool>> everyHoleImgisConductive { get; set; }
- public Dictionary<int, List<bool>> everyHoleImgisFanweibuchang { get; set; }
- public Dictionary<int, List<bool>> everyHoleImgisErzhichuli { get; set; }
- }
- }
|