ParaTrainResultClass.cs 430 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CCDCount.MODEL.ResultModel
  7. {
  8. public class ParaTrainResultClass
  9. {
  10. public int NoiseFilterThreshold { get; set;}
  11. public int MaxArea { get;set;}
  12. public int MinArea { get;set;}
  13. public double MaxLength { get;set;}
  14. public double MinLength { get;set;}
  15. }
  16. }