MeasureInfoModel.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using OpenCvSharp;
  2. using SmartCoalApplication.Annotation;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace SmartCoalApplication.AutomaticMeasurement
  10. {
  11. public class MeasureInfoModel
  12. {
  13. public int[] pictureNumber { get; set; }
  14. public int[] yiceliangNumber { get; set; }
  15. public int[] successNumber { get; set; }
  16. public int[] failNumber { get; set; }
  17. public List<string> text { get; set; }
  18. public int stop { get; set; }
  19. /// <summary>
  20. ///
  21. /// </summary>
  22. public Dictionary<string, List<Mat>> everyHoleImg { get; set; }
  23. public Dictionary<string, List<string>> everyHoleImgName { get; set; }
  24. public Dictionary<int, List<GraphicsList>> everyHoleImgGraphicsList { get; set; }
  25. public Dictionary<int, List<bool>> everyHoleImgisConductive { get; set; }
  26. public Dictionary<int, List<bool>> everyHoleImgisFanweibuchang { get; set; }
  27. public Dictionary<int, List<bool>> everyHoleImgisErzhichuli { get; set; }
  28. }
  29. }