Files

19 lines
428 B
C#
Raw Permalink Normal View History

namespace MainShell.Vision
{
/// <summary>
/// Mark 点识别参数
/// </summary>
public sealed class FindMarkParameters : TemplateVisionAlgorithmParameters
{
/// <summary>
/// 是否启用 ROI
/// </summary>
public bool UseRoi { get; set; }
/// <summary>
/// ROI 名称或标识
/// </summary>
public string RoiName { get; set; }
}
}