| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MvvmScaffoldFrame48.Model.StorageModel.AlgorithmConfig
- {
- public class ProcessingAlgorithmParameterConfig
- {
- public double _threshold {get; set;}
- //参数:最小面积
- public int _minArea { get; set; }
- //参数:是否启用滤波
- public bool _enableFiltering {get; set;}
- //参数:滤波类型
- public string _filterType {get;set;}
- }
- }
|