Initial commit

This commit is contained in:
2026-07-13 09:25:40 +07:00
parent c08ff54676
commit bccfb156d7
1938 changed files with 641646 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using RobotNet10.Shared.Enum;
using RobotNet10.Shared.Numbers;
namespace RobotNet10.Shared.Detection;
/// <summary>
/// Request to search for a specific marker
/// </summary>
public struct MarkerEntry
{
/// <summary>
/// Marker ID from database
/// </summary>
public string MarkerId { get; set; }
public MarkerType Type { get; set; }
/// <summary>
/// Search priority (1 = highest, 2 = second highest, etc.)
/// Lower number = higher priority
/// </summary>
public int Priority { get; set; }
public string DeviceId { get; set; }
public string Code { get; set; }
/// <summary>
/// Optional: Override detection parameters for this session
/// If null, use default parameters from marker definition
/// Tọa độ trong marker frame
/// </summary>
public Vector2[] ReferencePoints { get; set; }
}