mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-25 10:05:49 +08:00
26 lines
700 B
C#
26 lines
700 B
C#
namespace BetterGenshinImpact.Core.Recognition.OpenCv.TemplateMatch;
|
|
|
|
public static class MiniMapMatchConfig
|
|
{
|
|
/// <summary>
|
|
/// 原始小地图尺寸
|
|
/// </summary>
|
|
public const int OriginalSize = 156;
|
|
|
|
/// <summary>
|
|
/// 粗匹配时的地图尺寸
|
|
/// </summary>
|
|
public const int RoughSize = 52;
|
|
|
|
/// <summary>
|
|
/// 精确匹配时的地图尺寸
|
|
/// </summary>
|
|
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 };
|
|
|
|
} |