mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-31 13:56:35 +08:00
1、所有工具参数以Job分隔进行保存到本地
2、PMA工具修改
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user