This commit is contained in:
2025-04-16 08:52:56 +08:00
8 changed files with 880 additions and 468 deletions

View File

@ -1085,6 +1085,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