修改日志1

This commit is contained in:
TD
2025-04-15 09:24:39 +08:00
parent 72b67b6a2f
commit b009a7355b
4 changed files with 56 additions and 66 deletions

View File

@ -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