Files
better-genshin-impact/BetterGenshinImpact/Core/Recognition/OpenCv/Model/KeyPointFeatureBlock.cs
辉鸭蛋 f8f4332abd surf opt
2024-04-13 16:35:54 +08:00

21 lines
464 B
C#

using System.Collections.Generic;
using OpenCvSharp;
namespace BetterGenshinImpact.Core.Recognition.OpenCv.Model;
/// <summary>
/// 特征块
/// 对特征按图像区域进行划分
/// </summary>
public class KeyPointFeatureBlock
{
public List<KeyPoint> KeyPointList { get; } = new();
/// <summary>
/// 在完整 KeyPoint[] 中的下标
/// </summary>
public List<int> KeyPointIndexList { get; } = new();
public Mat? Descriptor;
}