| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MvvmScaffoldFrame48.Model.StorageModel.ProcessingConfig
- {
- public class ProcessingAlgorithmConfigModel
- {
- //参数:阈值
- public double Threshold { get; set; }
- //参数:最小面积
- public int MinArea { get; set;}
- //参数:是否启用滤波
- public bool EnableFiltering {get; set;}
- //参数:滤波类型
- public string FilterType { get; set;}
- }
- }
|