19 lines
412 B
C#
19 lines
412 B
C#
namespace MainShell.Vision
|
|
{
|
|
/// <summary>
|
|
/// 中心点识别参数
|
|
/// </summary>
|
|
public sealed class FindCenterParameters : TemplateVisionAlgorithmParameters
|
|
{
|
|
/// <summary>
|
|
/// 是否启用 ROI
|
|
/// </summary>
|
|
public bool UseRoi { get; set; }
|
|
|
|
/// <summary>
|
|
/// ROI 名称或标识
|
|
/// </summary>
|
|
public string RoiName { get; set; }
|
|
}
|
|
}
|