namespace BetterGenshinImpact.Core.Recognition.OpenCv.TemplateMatch; public static class MiniMapMatchConfig { /// /// 原始小地图尺寸 /// public const int OriginalSize = 156; /// /// 粗匹配时的地图尺寸 /// public const int RoughSize = 52; /// /// 精确匹配时的地图尺寸 /// public const int ExactSize = 260; public const int RoughZoom = 5; public const int ExactZoom = 1; public const int RoughSearchRadius = 50; public const int ExactSearchRadius = 20; public static readonly float[] ConfidenceThresholds = { 0.99f, 0.97f, 0.95f }; }