修改标签路径
This commit is contained in:
parent
d881dc6ec0
commit
b60d2759b1
@ -752,7 +752,17 @@ namespace DH.Commons.Base
|
|||||||
[Description("中处理-模型标签路径")]
|
[Description("中处理-模型标签路径")]
|
||||||
public string In_lable_path
|
public string In_lable_path
|
||||||
{
|
{
|
||||||
get => _in_lable_path;
|
get
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(ModelPath) || string.IsNullOrWhiteSpace(ModelPath))
|
||||||
|
{
|
||||||
|
return string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
string dir = Path.GetDirectoryName(ModelPath);
|
||||||
|
string file = $"{Path.GetFileNameWithoutExtension(ModelPath)}.txt";
|
||||||
|
return Path.Combine(dir, file);
|
||||||
|
}
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (_in_lable_path == value) return;
|
if (_in_lable_path == value) return;
|
||||||
|
@ -453,7 +453,7 @@ namespace DHSoftware
|
|||||||
cam.CameraIP = cameraBase.CameraIP;
|
cam.CameraIP = cameraBase.CameraIP;
|
||||||
cam.IsEnabled = cameraBase.IsEnabled;
|
cam.IsEnabled = cameraBase.IsEnabled;
|
||||||
Cameras.Add(cam);
|
Cameras.Add(cam);
|
||||||
cam.CameraConnect();
|
//cam.CameraConnect();
|
||||||
cam.OnHImageOutput += OnCameraHImageOutput;
|
cam.OnHImageOutput += OnCameraHImageOutput;
|
||||||
}
|
}
|
||||||
else if(cameraBase.CamType == EnumCamType.海康hik)
|
else if(cameraBase.CamType == EnumCamType.海康hik)
|
||||||
@ -483,7 +483,7 @@ namespace DHSoftware
|
|||||||
PLC.PLCName = plcBase.PLCName;
|
PLC.PLCName = plcBase.PLCName;
|
||||||
PLC.PLCItemList=plcBase.PLCItemList;
|
PLC.PLCItemList=plcBase.PLCItemList;
|
||||||
PLC.Port= plcBase.Port;
|
PLC.Port= plcBase.Port;
|
||||||
PLC.PLCConnect();
|
// PLC.PLCConnect();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user