| | |
| | | using LB_SmartVision.Tool; |
| | | using LB_VisionProcesses.Cameras; |
| | | using LB_VisionProcesses.Communicators; |
| | | using LB_VisionProcesses.BarcodeReaders; |
| | | using System; |
| | | using System.Collections.Concurrent; |
| | | using System.Collections.Generic; |
| | |
| | | public static ObservableConcurrentDictionary<string, BaseCamera> dicCameras { get; set; } = new ObservableConcurrentDictionary<string, BaseCamera>(); |
| | | |
| | | /// <summary> |
| | | /// 读码器集合(Key:设备SN,Value:读码器句柄) |
| | | /// </summary> |
| | | public static ObservableConcurrentDictionary<string, BarcodeReaderBase> dicBarcodeReaders { get; set; } = new ObservableConcurrentDictionary<string, BarcodeReaderBase>(); |
| | | |
| | | /// <summary> |
| | | /// 通讯集合(Key:通讯名,Value:通讯句柄) |
| | | /// </summary> |
| | | public static ObservableConcurrentDictionary<string, BaseCommunicator> dicCommunicators { get; set; } = new ObservableConcurrentDictionary<string, BaseCommunicator>(); |