Commit 0c6e00f3 authored by 潘栩锋's avatar 潘栩锋 🚴

修复 GetSample 取样范围,无法保存

parent 7ff61276
...@@ -801,13 +801,15 @@ _end: ...@@ -801,13 +801,15 @@ _end:
} }
public bool Enable { get; set; } = true; public bool Enable { get; set; } = true;
public int Range { get; set; } = 100; public int SampleRange { get; set; } = 100;
public int Window { get; set; } public int Window { get; set; }
public bool IsCheckByPercent { get; set; } = true; public bool IsCheckByPercent { get; set; } = true;
public double ErrPercent { get; set; } = 2; public double ErrPercent { get; set; } = 2;
public int ErrValue { get; set; } = 200; public int ErrValue { get; set; } = 200;
public double CrossErrPercent { get; set; } = 0.02;
public int ErrIntervalMin { get; set; } = 30;
public SampleCellParam[] Samples { get; set; } public SampleCellParam[] Samples { get; set; }
public int Search { get; set; } = 100; public int SearchRange { get; set; } = 100;
public SampleFeatureParam[] Features { get; set; } public SampleFeatureParam[] Features { get; set; }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment