Files
test_demo/MX-PD-盘古 - new/PanGu.DieBonderApp/MainShell/Process/DieTransfer/DiePositioning/WaferRecognitionSnapshot.cs
Shi.Ji e31d3560bb 添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
2026-05-18 11:43:09 +08:00

37 lines
958 B
C#

using System;
namespace MainShell.Process
{
public class WaferRecognitionSnapshot
{
public WaferRecognitionSnapshot()
{
RowsReal = Array.Empty<double>();
ColumnsReal = Array.Empty<double>();
Angles = Array.Empty<double>();
OverlapRows = Array.Empty<double>();
OverlapColumns = Array.Empty<double>();
OverlapAngles = Array.Empty<double>();
}
public double[] RowsReal { get; set; }
public double[] ColumnsReal { get; set; }
public double[] Angles { get; set; }
public double[] OverlapRows { get; set; }
public double[] OverlapColumns { get; set; }
public double[] OverlapAngles { get; set; }
public int TotalFrameCount { get; set; }
public int SuccessFrameCount { get; set; }
public int FailedFrameCount { get; set; }
public int LostFrameCount { get; set; }
}
}