using LB_SmartVisionCommon;
|
using Newtonsoft.Json;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using System.Windows.Forms;
|
|
namespace LB_SmartVisionCameraDevice.PHM6000
|
{
|
[JsonObject(MemberSerialization.OptOut)]
|
[TypeConverter(typeof(PropertySorter))]
|
[DefaultProperty("轮廓线")]
|
public class CaliOutLine
|
{
|
protected const string ROIInfo = "标定ROI数据";
|
[Category(ROIInfo), PropertyOrder(1)]
|
[DisplayName("轮廓线区域")]
|
public string OutLine { get; set; } = "0,0,0,0";
|
}
|
}
|