1、所有工具参数以Job分隔进行保存到本地

2、PMA工具修改
This commit is contained in:
liu.wenjie
2022-05-11 08:21:47 +08:00
parent 9dcba19b67
commit 900ea68f69
15 changed files with 71 additions and 97 deletions

View File

@@ -76,7 +76,8 @@ namespace HalconTool
/// <summary>
/// 输出图像
/// </summary>
public HObject outputImage = null;
[NonSerialized]
public HObject outputImage = new HObject();
/// <summary>
/// 输出图像的路径
/// </summary>
@@ -98,7 +99,7 @@ namespace HalconTool
}
else
{
if (currentImageIndex <= L_imageFile.Count)
if (currentImageIndex <= L_imageFile.Count && L_imageFile.Count != 0)
{
currentImageIndex = currentImageIndex == L_imageFile.Count ? 0 : currentImageIndex;
outputImageFilePath = L_imageFile[currentImageIndex];