1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using Bro.Common.Helper;
using Bro.Common.Interface;
using Bro.Common.Model;
using Bro.Device.HikCamera;
using HalconDotNet;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
 
namespace A032.Process
{
    public enum ResultState
    {
        OK = 1,
        NG = -1,
        Undetermined = -2,
    }
 
    public partial class ProcessControl
    {
        public void QueryRobotIO()
        {
 
        }
 
        [ProcessMethod("HikCamera", "RobotCorrection", "拍摄,确认机器人调整位置", true)]
        public ProcessResponse RobotCorrection(IOperationConfig config)
        {
            return new ProcessResponse(true);
        }
    }
}