修改日志1
This commit is contained in:
@ -1072,6 +1072,15 @@ namespace DH.Commons.Base
|
||||
OnPropertyChanged(nameof(CellLinks));
|
||||
}
|
||||
}
|
||||
|
||||
public bool FilterOperation(DetectionResultDetail recongnitionResult)
|
||||
{
|
||||
|
||||
double compareValue = recongnitionResult.Area;
|
||||
double compareScoreValue = recongnitionResult.Score;
|
||||
return (compareValue >= MinArea && compareValue <= MaxArea)&& (compareScoreValue >= MinScore && compareScoreValue <= MaxScore);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public class SizeTreatParam : NotifyProperty
|
||||
|
Reference in New Issue
Block a user