ProcessingAlgorithmConfigModel.cs 550 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MvvmScaffoldFrame48.Model.StorageModel.ProcessingConfig
  7. {
  8. public class ProcessingAlgorithmConfigModel
  9. {
  10. //参数:阈值
  11. public double Threshold { get; set; }
  12. //参数:最小面积
  13. public int MinArea { get; set;}
  14. //参数:是否启用滤波
  15. public bool EnableFiltering {get; set;}
  16. //参数:滤波类型
  17. public string FilterType { get; set;}
  18. }
  19. }