From 913c2f4f74d58617a9e23e63da0094295b722c8b Mon Sep 17 00:00:00 2001
From: C3204 <zhengyabo@lanpucloud.cn>
Date: 星期四, 08 一月 2026 13:18:51 +0800
Subject: [PATCH] 增加IO触发相机获取图像后自动触发对应的检测流程以及Log记录。

---
 LB_VisionProcesses/Cameras/LBCameras/PHM6000Camera.cs |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/LB_VisionProcesses/Cameras/LBCameras/PHM6000Camera.cs b/LB_VisionProcesses/Cameras/LBCameras/PHM6000Camera.cs
index 0aba8c7..e615d81 100644
--- a/LB_VisionProcesses/Cameras/LBCameras/PHM6000Camera.cs
+++ b/LB_VisionProcesses/Cameras/LBCameras/PHM6000Camera.cs
@@ -266,6 +266,36 @@
             return false;
         }
 
+        public override bool StartWith_SoftTriggerModel()
+        {
+            throw new NotImplementedException();
+        }
+
+        public override bool StartWith_HardTriggerModel(TriggerSource hardtriggeritem = TriggerSource.Line0)
+        {
+            throw new NotImplementedException();
+        }
+
+        public override bool GetImage(out Bitmap bitmap, int outtime = 3000)
+        {
+            throw new NotImplementedException();
+        }
+
+        public override bool GetImageWithSoftTrigger(out Bitmap bitmap, int outtime = 3000)
+        {
+            throw new NotImplementedException();
+        }
+
+        public override void SetCamConfig(CameraConfig config)
+        {
+            throw new NotImplementedException();
+        }
+
+        public override void GetCamConfig(out CameraConfig config)
+        {
+            throw new NotImplementedException();
+        }
+
         #endregion
     }
 

--
Gitblit v1.9.3