ProcessingAlgorithmParameterConfig.cs 530 B

12345678910111213141516171819
  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.AlgorithmConfig
  7. {
  8. public class ProcessingAlgorithmParameterConfig
  9. {
  10. public double _threshold {get; set;}
  11. //参数:最小面积
  12. public int _minArea { get; set; }
  13. //参数:是否启用滤波
  14. public bool _enableFiltering {get; set;}
  15. //参数:滤波类型
  16. public string _filterType {get;set;}
  17. }
  18. }