| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055 |
- using CCDCount.DLL.AlarmTools;
- using CCDCount.DLL.SqlDataClass;
- using CCDCount.DLL.Tools;
- using CCDCount.MODEL.CameraClass;
- using CCDCount.MODEL.ConfigModel;
- using CCDCount.MODEL.ResultModel;
- using CCDCount.MODEL.ShuLiModel;
- using LogClass;
- using MvCameraControl;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder;
- using System.Diagnostics;
- using System.Drawing;
- using System.Linq;
- using System.Runtime.InteropServices;
- using System.Threading;
- using System.Threading.Tasks;
- namespace CCDCount.DLL
- {
- public class MainThreadClass
- {
- #region 变量与实例
- Thread SwitchIdentifyImageThread = null;
- private bool IsSwitch = false;
- public ShuLiClass shuLiClass = null;
- CameraClass cameraClass = new CameraClass();
- public ShuLiConfigClass shuLiConfig = null;
- public CameraConfig cameraConfig = null;
- public bool CameraConfigIsChange = false;
- public string BatchNumber = "";
- public int ThisCamerNo = -1;
- public double XCoefficient {
- get
- {
- shuLiClass.GetXYCoefficient(out double XCoefficient, out double YCoefficient);
- return XCoefficient;
- }
- set
- {
- shuLiClass.SetXCoefficient(value);
- }
- }
- public double YCoefficient {
- get
- {
- shuLiClass.GetXYCoefficient(out double XCoefficient, out double YCoefficient);
- return YCoefficient;
- }
- set
- {
- shuLiClass.SetYCoefficient(value);
- }
- }
- public bool CameraStatic { get { return _CameraStatic; } }
- private bool _CameraStatic = false;
- // 返回交换线程状态
- public bool CameraRunStatic { get { return IsSwitch; } }
- public bool CameraSendMessageStatic { get { return IsSend; } }
- public bool IsOpenLoadThread { get { return _IsOpenLoadThread; }}
- private bool _IsOpenLoadThread = false;
- public int HistoryActiveNum { get { return shuLiClass.GetHistoryActiveNum(); } }
- public int OkHistoryNum { get { return shuLiClass.GetOkHistoryNum(); } }
- public int NgHistoryNum { get { return shuLiClass.GetNgHistoryNum(); } }
- // 数粒信息发送线程
- Thread SendBottLogicMessageThread = null;
- bool IsSend = false;
- // Modbus客户端实例
- public ModbusTcpClient modbusTcpClient = new ModbusTcpClient();
- // 颗粒结果待发送队列
- //ConcurrentQueue<ushort> SendQueue = new ConcurrentQueue<ushort>();
- ConcurrentQueue<TestSenMessage> SendQueue = new ConcurrentQueue<TestSenMessage>();
- /// <summary>
- /// 数粒状态计时器
- /// </summary>
- Stopwatch stopwatch = Stopwatch.StartNew();
- /// <summary>
- /// 数粒状态
- /// </summary>
- private bool _ShuLiState = true;
- public bool ShuLiState { get { return _ShuLiState; } }
- private bool _IsDebug = true;
- public bool IsDebug { get { return _IsDebug; } }
- private bool IsConnectModbus = false;
- public static ActionMesSqliteDataClass actionMesSqliteDataClass = null;
- ConcurrentQueue<IImage> _images = new ConcurrentQueue<IImage>();
- public string FormulationName { get; set; } = string.Empty;
- public bool IsLoadFormulation = false;
- #endregion
- #region 公共方法
- /// <summary>
- /// 设置ModbusTcpClient
- /// </summary>
- /// <param name="modbusTcpClient"></param>
- public void ConnectModbus(string ipAddress)
- {
- Task.Run(() =>
- {
- while(!modbusTcpClient.Connect(ipAddress))
- {
- IsConnectModbus = false;
- SystemAlarm.AlarmAlert(AlarmMessageList.PLC通讯连接失败, $"Modbus通讯连接失败,目标IP:{ipAddress}", "DLL:MainThreadClass-ConnectModbus");
- Task.Delay(1000);
- SystemAlarm.AlarmCancel(AlarmMessageList.PLC通讯连接失败);
- }
- FaultLog.RecordLogMessage($"Modbus通讯连接成功,目标IP:{ipAddress}",6);
- IsConnectModbus = true;
- });
- //if (!modbusTcpClient.Connect(ipAddress))
- //{
- // //FaultLog.RecordErrorMessage($"MianThread{cameraConfig.CamerNo}-Modbus通讯连接失败,目标IP:{ipAddress}");
- // SystemAlarm.AlarmAlert(AlarmMessageList.PLC通讯连接失败, $"Modbus通讯连接失败,目标IP:{ipAddress}", "DLL:MainThreadClass-ConnectModbus");
- // return;
- //}
- //IsConnectModbus = true;
- //SystemAlarm.AlarmCancel(AlarmMessageList.PLC通讯连接失败);
- }
- /// <summary>
- /// 初始化构造方法
- /// </summary>
- /// <param name="configClass"></param>
- /// <param name="CameraConfig"></param>
- public MainThreadClass(ShuLiConfigClass configClass,CameraConfig CameraConfig)
- {
- shuLiConfig = configClass;
- cameraConfig = CameraConfig;
- // 数粒配置文件地址
- if (configClass!=null)
- {
- // 创建数粒对象(配置文件)
- shuLiClass = new ShuLiClass(shuLiConfig);
- }
- else
- {
- // 创建数粒对象(默认)
- shuLiClass = new ShuLiClass();
- }
- _IsOpenLoadThread = cameraConfig.IsOpenLoad;
- ThisCamerNo = cameraConfig.CamerNo;
- }
- /// <summary>
- /// 加载相机
- /// </summary>
- /// <returns></returns>
- public bool LoadCamera()
- {
- bool result = false;
- // 相机列表
- try
- {
- // 获取相机列表
- cameraClass.GetCameraList(out List<CameraInfoClass> list);
- if (list.Count == 0)
- {
- //FaultLog.RecordErrorMessage(string.Format("{0}:没有相机", "MainThreadClass-StartMianThread"));
- SystemAlarm.AlarmAlert(AlarmMessageList.未检测到相机, "未检测到相机", "DLL:MainThreadClass-LoadCamera");
- // 如果没有相机,则退出
- return result;
- }
- SystemAlarm.AlarmCancel(AlarmMessageList.未检测到相机);
- // 加载相机
- // cameraClass.LoadCamereDevice(list.First().DeviceSN);
- if (!cameraClass.LoadCamereDevice(cameraConfig))
- {
- //FaultLog.RecordErrorMessage(string.Format("{0}:相机加载失败", "MainThreadClass-StartMianThread"));
- SystemAlarm.AlarmAlert(AlarmMessageList.相机加载失败, "相机加载失败", "DLL:MainThreadClass-LoadCamera");
- return result;
- }
- SystemAlarm.AlarmCancel(AlarmMessageList.相机加载失败);
- CameraConfigIsChange = false;
- }
- catch(Exception ex)
- {
- Console.WriteLine($"MainThreadClass-LoadCamera:加载相机失败: {ex.Message}");
- }
- return result;
- }
- /// <summary>
- /// 重新加载相机配置
- /// </summary>
- public void ReLoadCameraConfig()
- {
- if(CameraConfigIsChange)
- {
- CameraConfig OldcameraConfig = cameraClass.GetConfigValue();
- if(OldcameraConfig.CameraSNNum != cameraConfig.CameraSNNum)
- {
- cameraClass.LoadCamereDevice(cameraConfig);
- }
- else
- {
- cameraClass.ReLoadCameraConfig(cameraConfig);
- }
- }
- }
- /// <summary>
- /// 开始主线程
- /// </summary>
- public bool StartMianThread()
- {
- bool result = false;
- try
- {
- if(BatchNumber=="")
- {
- FaultLog.RecordErrorMessage($"{cameraConfig.CamerNo}号相机没有批次号,启动失败", "Dll:MainThreadClass-StartMianThread");
- return result;
- }
- if (!IsConnectModbus)
- {
- FaultLog.RecordErrorMessage($"{cameraConfig.CamerNo}号相机没有PLC连接,启动失败", "Dll:MainThreadClass-StartMianThread");
- return result;
- }
- actionMesSqliteDataClass = new ActionMesSqliteDataClass($"{AppDomain.CurrentDomain.BaseDirectory}DATA\\ActiveObjectData\\Cam{cameraConfig.CamerNo}\\ActiveObjectData_{BatchNumber}.db");
- //actionMesSqliteDataClass = new ActionMesSqliteDataClass($"{AppDomain.CurrentDomain.BaseDirectory}DATA\\ActiveObjectData\\Cam{cameraConfig.CamerNo}\\ActiveObjectData20250827.db");
- actionMesSqliteDataClass.GetAllActionMinStartMaxEndLine(out int num, out int StartLine, out int EndLine);
- shuLiClass.InitCurrentLine(EndLine);
- //shuLiClass.InitNum(num);
- // 取图开启
- if (!cameraClass.StartCamera())
- {
- return result;
- }
- _CameraStatic = true;
- StartSendBottLogicMessageThread();
- // 数据交换线程开启
- StartSwitchThread();
- // 为数粒算法的识别成功一粒回调函数添加方法
- shuLiClass.WorkCompleted += Worker_OneGrainCompleted;
- // 开启识别线程
- shuLiClass.StartIdentifyFuntion(cameraClass.GetCamereImageSize().Width);
- result = true;
- }
- catch(Exception ex)
- {
- Console.WriteLine($"MainThreadClass-StartMianThread:启动失败: {ex.Message}");
- }
- return result;
- }
- /// <summary>
- /// 停止主线程
- /// </summary>
- public bool StopMianThread()
- {
- bool result = false;
- try
- {
- _CameraStatic = false;
- shuLiClass.WorkCompleted -= Worker_OneGrainCompleted;
- // 相机取图关闭
- cameraClass.StopCamera();
- // 数据交换线程关闭
- StopSwitchThread();
- // 数粒识别线程关闭
- shuLiClass.StopIdentifyFuntion();
- StopSendBottLogicMessageThread();
- result = true;
- }
- catch(Exception ex)
- {
- Console.WriteLine($"MainThreadClass-StopMianThread:停止失败: {ex.Message}");
- }
- return result;
- }
- /// <summary>
- /// 释放相机资源
- /// </summary>
- public void DisposeCamera()
- {
- cameraClass.StopCamera();
- cameraClass.DisPoseCamera();
- }
- /// <summary>
- /// 重加载相机
- /// </summary>
- /// <param name="CameraSN"></param>
- /// <returns></returns>
- public bool ReLoadCamera(string CameraSN)
- {
- bool result;
- result = cameraClass.ReLoadCameraDevice(CameraSN);
- if (result)
- {
- cameraConfig = cameraClass.GetConfigValue();
- }
- return result;
-
- }
- /// <summary>
- /// 获取显示用的图片数据
- /// </summary>
- /// <param name="ImageHeight"></param>
- /// <param name="Data"></param>
- public void GetShowImage(int ImageHeight,out Bitmap ImageData)
- {
- List<RowStartEndCol> RowsShowList = new List<RowStartEndCol>();
- ActiveObjectClass NewActive = shuLiClass.GetLastActive();
- if (NewActive == null)
- {
- LOG.log(string.Format("{0}:没有获取到数粒数据", "MainThreadClass-GetShowImage"));
- ImageData = GetNullShowImage(4096, ImageHeight);
- return;
- }
- List<ActiveObjectClass> Data = shuLiClass.GetHistoryActive().Where(o => o.LastSeenLine > NewActive.LastSeenLine - ImageHeight).ToList();
- Bitmap BitmapImage = new Bitmap(NewActive.ImageWidth, ImageHeight);
- if (Data.Count > 0)
- {
- int ThisImageStartLine = (int)Data.Max(o => o.LastSeenLine) - ImageHeight;
- using (Graphics g = Graphics.FromImage(BitmapImage))
- {
- g.Clear(Color.White);
- var redPen = new Pen(Color.Red, 1);
- var bluePen = new Pen(Color.FromArgb(0,146,255), 1);
- var GreenPen = new Pen(Color.SeaGreen, 5);
- using (Pen RedPan = new Pen(Color.Red, 5))
- {
- for (int i = 0; i < shuLiClass.ChannelsRoi.Count - 1; i++)
- {
- g.DrawLine(RedPan, new Point(shuLiClass.ChannelsRoi[i], 0), new Point(shuLiClass.ChannelsRoi[i], BitmapImage.Height));
- }
- }
- foreach (var item in Data)
- {
- int roix = item.MinStartCol - 5;
- int roiy = (int)(item.StartLine - ThisImageStartLine) - 5 < 0 ? 0 : (int)(item.StartLine - ThisImageStartLine) - 5;
- int roiheight = (int)(item.LastSeenLine - ThisImageStartLine - roiy) + 10;
- int roiwidth = item.MaxEndCol - item.MinStartCol + 10;
- g.DrawRectangle(GreenPen, new Rectangle(roix, roiy, roiwidth, roiheight));
- Font font = new Font("Arial", 20);
- g.DrawString(item.Num.ToString(), font, Brushes.Black, new Point(roix - 20*item.Num.ToString().Length, roiy - 20));
- foreach (var item1 in item.RowsData)
- {
- if((int)(item1.RowsCol - ThisImageStartLine)<0) continue;
- int yPos = (int)(item1.RowsCol - ThisImageStartLine);
- g.DrawLine(item.StateCode == 0 ? bluePen : redPen, new Point(item1.StartCol, yPos), new Point(item1.EndCol, yPos));
- }
- }
- }
- }
- ImageData = BitmapImage.Clone() as Bitmap;
- BitmapImage.Dispose();
- //GC.Collect();
- }
- /// <summary>
- /// 获取无数据的图片
- /// </summary>
- /// <param name="ImageWidth"></param>
- /// <param name="ImageHeight"></param>
- /// <param name="ImageData"></param>
- public Bitmap GetNullShowImage(int ImageWidth, int ImageHeight)
- {
- Bitmap BitmapImage = new Bitmap(ImageWidth, ImageHeight);
- using (Graphics g = Graphics.FromImage(BitmapImage))
- {
- g.Clear(Color.White);
- using (Pen RedPan = new Pen(Color.Red, 8))
- {
- for (int i = 0; i < shuLiClass.ChannelsRoi.Count - 1; i++)
- {
- g.DrawLine(RedPan, new Point(shuLiClass.ChannelsRoi[i], 0), new Point(shuLiClass.ChannelsRoi[i], BitmapImage.Height));
- }
- }
- }
- return BitmapImage;
- }
- /// <summary>
- /// 获取此刻的Config数据
- /// </summary>
- /// <param name="config"></param>
- public void GetAllConfigValue(out CameraConfig Camconfig,out ShuLiConfigClass shuLiConfig)
- {
- //判断是否加载了相机
- if(cameraClass.IsLoadCamera())
- {
- //获取已经加载的相机的配置
- cameraConfig = cameraClass.GetConfigValue();
- Camconfig = cameraConfig;
- }
- else
- {
- cameraConfig = new CameraConfig();
- Camconfig = cameraConfig;
- }
- //读取视觉配置
- shuLiConfig = shuLiClass.GetConfigValue();
- this.shuLiConfig = shuLiConfig;
- }
- /// <summary>
- /// 获取相机此刻的Config数据
- /// </summary>
- /// <param name="CameraConfig"></param>
- public CameraConfig GetCameraConfig()
- {
- CameraConfig result = null;
- //判断是否加载了相机
- if (cameraClass.IsLoadCamera())
- {
- //获取已经加载的相机的配置
- result = cameraClass.GetConfigValue();
- cameraConfig = result;
- }
- return result;
- }
- /// <summary>
- /// 保存所有Config
- /// </summary>
- public void SaveAllConfig()
- {
- shuLiClass.SaveConfig();
- }
- /// <summary>
- /// 获取相机连接状态
- /// </summary>
- /// <returns></returns>
- public bool GetCameraConnectStatic()
- {
- bool result = false;
- if(cameraClass != null)
- result = cameraClass.IsConnectCamera();
- return result;
- }
- /// <summary>
- /// 清除历史数据
- /// </summary>
- /// <returns></returns>
- public bool ClearHistoryActive()
- {
- bool result = false;
- if(shuLiClass != null)
- result = shuLiClass.ClearHistoryActive();
- return result;
- }
- public bool ClearSendQueue()
- {
- bool result = false;
- while(SendQueue.Count>0)
- {
- SendQueue.TryDequeue(out TestSenMessage testSen);
- }
- result = true;
- return result;
- }
- /// <summary>
- /// 获取过去一秒内颗粒数量
- /// </summary>
- /// <returns></returns>
- public int GetOneSecondActiveNum()
- {
- int result = 0;
- if(shuLiClass != null)
- result = shuLiClass.GetHistoryActive().Where(o=>o.EndCheckTime>DateTime.Now-TimeSpan.FromSeconds(1)).Count();
- return result;
- }
- /// <summary>
- /// 获取相机原图一张
- /// </summary>
- /// <returns></returns>
- public Bitmap GetCamImageOnce()
- {
- Bitmap result = null;
- if(_images.Count>0)
- {
- _images.TryDequeue(out IImage image);
- if(image != null)
- result = image.ToBitmap();
- }
- return result;
- }
- public void ParameterTrain(List<ActiveObjectClass> ListValues)
- {
- if(ListValues.Count() > 0)
- {
- if(ListValues.Count()>500)
- {
- ListValues = ListValues.Take(500).OrderByDescending(o=>o.Area).ToList();
- }
- int MaxArea = ListValues.Max(x => x.Area);
- int MinArea = ListValues.Min(x => x.Area);
- double MaxLength = ListValues.Max(x => x.MaxLength);
- double MinLength = ListValues.Min(x => x.MaxLength);
- if(ListValues.Count<2) return;
- int ChazhiId = -1;
- int MaxChazhi = 0;
- for (int i = 1; i < ListValues.Count; i++)
- {
- int Chazhi = (ListValues[i - 1].Area - ListValues[i].Area);
- if (Chazhi > MaxChazhi*10)
- {
- MaxChazhi = Chazhi;
- ChazhiId = i;
- }
- }
- if(ChazhiId == -1)
- return;
- int yuzhi = (int)Math.Sqrt(2) + 2;
- }
- }
- /// <summary>
- /// 运行参数训练
- /// </summary>
- /// <returns></returns>
- public ParaTrainResultClass ParameterTrain()
- {
- var ListValues = shuLiClass.GetHistoryActive();
- ParaTrainResultClass Result = new ParaTrainResultClass();
- if (ListValues.Count() > 0)
- {
- if (ListValues.Count() > 500)
- {
- ListValues = ListValues.Skip(ListValues.Count - 500).OrderByDescending(o => o.Area).ToList();
- }
- if (ListValues.Count < 2)
- {
- Result = null;
- return Result;
- }
- Result.NoiseFilterThreshold = 5;
- var LengthListValues = ListValues.OrderBy(o => o.MaxLength).Skip(100).Take(300).ToList();
- Result.MaxLength = Convert.ToInt32(ListValues.Max(x => x.MaxLength) * 1.1);
- Result.MinLength = Convert.ToInt32(ListValues.Min(x => x.MaxLength) * 0.9);
- var AreaListValues = ListValues.OrderBy(o => o.Area).Skip(100).Take(300).ToList();
- Result.MaxArea = Convert.ToInt32(ListValues.Max(x => x.Area) * 1.1);
- Result.MinArea = Convert.ToInt32(ListValues.Min(x => x.Area) * 0.9);
- }
- return Result;
- }
- public ParaTrainResultClass ParameterTrain(int KeliW,int KeliL)
- {
- var ListValues = shuLiClass.GetHistoryActive();
- ParaTrainResultClass Result = new ParaTrainResultClass();
- List<ActiveObjectClass> LengthListValues = null;
- List<ActiveObjectClass> AreaListValues = null;
- if (ListValues.Count() > 0)
- {
- try
- {
- LOG.log("参数训练-数据筛选", 6);
- if (ListValues.Count() > 1000)
- {
- ListValues = ListValues.Skip(ListValues.Count - 1000).OrderByDescending(o => o.Num).ToList();
- }
- if (ListValues.Count < 2)
- {
- Result = null;
- return Result;
- }
- List<MaxLengthModel> maxLengthModels = new List<MaxLengthModel>();
- LOG.log("参数训练-凸包计算-未标定长度检测", 6);
- foreach (var item in ListValues)
- {
- List<Point> points = shuLiClass.ConvexHull(item.RowsData);
- var itemLenValue = shuLiClass.CoefficientCalculateMinimumBoundingRectangle(points);
- var UseValue = new MaxLengthModel()
- {
- MaxLength = itemLenValue.Height,
- Point1 = itemLenValue.HeightPoints[0],
- Point2 = itemLenValue.HeightPoints[1]
- };
- maxLengthModels.Add(UseValue);
- }
- LOG.log("参数训练-标定计算", 6);
- var ScaleResult = LineScanCameraCalibrator.CalculateLineScanPixelScale(maxLengthModels, KeliL);
- shuLiClass.SetXCoefficient(ScaleResult.XScale);
- shuLiClass.SetYCoefficient(ScaleResult.YScale);
- shuLiConfig.ScaleX = ScaleResult.XScale;
- shuLiConfig.ScaleY = ScaleResult.YScale;
- Result.ScaleX = ScaleResult.XScale;
- Result.ScaleY = ScaleResult.YScale;
- Result.NoiseFilterThreshold = 5;
- LOG.log("参数训练-计算标定后的长度", 6);
- foreach (var item in ListValues)
- {
- item.MaxLength = shuLiClass.SizeCalculation(item.RowsData).Height;
- }
- LOG.log("参数训练-长度数据筛选", 6);
- if (ListValues.Count >= 1000)
- {
- LengthListValues = ListValues.OrderBy(o => o.MaxLength).Skip(50).Take(900).ToList();
- }
- else
- {
- LengthListValues = ListValues.OrderBy(o => o.MaxLength).Skip(10).Take(ListValues.Count - 20).ToList();
- }
- LOG.log("参数训练-长度数据计算", 6);
- Result.MaxLength = Convert.ToInt32(LengthListValues.Max(x => x.MaxLength)) + 1;
- Result.MinLength = Convert.ToInt32(LengthListValues.Min(x => x.MaxLength) - 1);
- LOG.log("参数训练-面积数据筛选", 6);
- if (ListValues.Count >= 1000)
- {
- AreaListValues = ListValues.OrderBy(o => o.Area).Skip(50).Take(900).ToList();
- }
- else
- {
- AreaListValues = ListValues.OrderBy(o => o.Area).Skip(10).Take(ListValues.Count - 20).ToList();
- }
- LOG.log("参数训练-面积数据计算", 6);
- Result.MaxArea = Convert.ToInt32(AreaListValues.Max(x => x.Area)) + 1;
- Result.MinArea = Convert.ToInt32(AreaListValues.Min(x => x.Area)) - 1;
- }
- catch(Exception ex)
- {
- LOG.error(ex.Message);
- }
- }
- return Result;
- }
- #endregion
- #region 私有方法
- //bool IsFill = false;
- //bool IsXuanZhuanCloseFaMen = false;
- /// <summary>
- /// 每数完一粒识别线程执行的事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void Worker_OneGrainCompleted(object sender, ActiveObjectEventArgsClass e)
- {
- //LOG.log("有活跃物体转换为了历史物体,回调事件被触发!", 6);
- //LOG.log(string.Format("图像处理实例中的待识别图像缓存队列长度{0}", shuLiClass.ImageNum), 6);
- if (e.Actives.Where(o => o.StateCode == 7).Count() > 0)
- {
- stopwatch.Restart();
- _ShuLiState = false;
- }
- else if (stopwatch.ElapsedMilliseconds > 1000)
- {
- stopwatch.Stop();
- _ShuLiState = true;
- }
- //Int16 result = new Int16();
- ushort[] result = new ushort[2];
- var Hset = new HashSet<int>();
- // 事件处理逻辑
- foreach (ActiveObjectClass oneActive in e.Actives)
- {
- //往数组中计数
- var UseTime = DateTime.Now - oneActive.StartCheckTime;
- if (BatchNumber!="") oneActive.BatchNumber = BatchNumber;
- LOG.log(string.Format("输出当前颗粒信息,颗粒编号:{0},开始时间:{1},结束时间:{2},识别耗时:{3},颗粒状态:{4},通道数:{5}",
- oneActive.Num, oneActive.StartCheckTime.ToString("O"), oneActive.EndCheckTime.ToString("O"),UseTime.ToString(), oneActive.StateCode, oneActive.ChannelNO), 6);
- //记录到数据库
- ThreadPool.QueueUserWorkItem(_ =>
- {
- if (actionMesSqliteDataClass != null)
- {
- try
- {
- actionMesSqliteDataClass.InsertActiveObject(oneActive);
- }
- catch (Exception ex)
- {
- LOG.error("MianThread-Worker_OneGrainCompleted-Task:" + ex.Message);
- }
- }
- });
- if (!Hset.Add(oneActive.ChannelNO))
- {
- //有重复的通道的异常记录流程
- var EResult = new ushort[2];
- //正常运行流程
- if (oneActive.ChannelNO == -1)
- {
- FaultLog.RecordErrorMessage("颗粒通道判定异常");
- continue;
- }
- if (oneActive.StateCode == 0)
- {
- //单通道合格计数
- EResult[0] |= (ushort)(1 << oneActive.ChannelNO);
- }
- else
- {
- if (oneActive.StateCode != 7)
- {
- //单通道不合格计数
- EResult[1] |= (ushort)(1 << (oneActive.ChannelNO));
- }
- else if (oneActive.StateCode == 7)
- {
- FaultLog.RecordErrorMessage("视野存在遮挡,请检查相机");
- }
- }
- SendQueue.Enqueue(new TestSenMessage()
- {
- Message = EResult,
- NumMessage = new ushort[] { (ushort)oneActive.Num },
- count = 1
- });
- continue;
- }
- else
- {
- //正常运行流程
- if (oneActive.ChannelNO == -1)
- {
- FaultLog.RecordErrorMessage("颗粒通道判定异常");
- continue;
- }
- if (oneActive.StateCode == 0)
- {
- //单通道合格计数
- result[0] |= (ushort)(1 << oneActive.ChannelNO);
- }
- else
- {
- if (oneActive.StateCode != 7)
- {
- //单通道不合格计数
- result[1] |= (ushort)(1 << (oneActive.ChannelNO));
- }
- else if (oneActive.StateCode == 7)
- {
- FaultLog.RecordErrorMessage("视野存在遮挡,请检查相机");
- }
- }
- }
-
- }
- //LOG.log("当前待发送队列数量:" + SendQueue.Count, 6);
- if (IsSend)
- {
- SendQueue.Enqueue(new TestSenMessage()
- {
- Message = result,
- //NumMessage = new ushort[] { (ushort)oneActive.Num },
- NumMessage = e.Actives.Select(o => (ushort)o.Num).ToArray(),
- count = (ushort)e.Actives.Count
- });
- }
- }
- #endregion
- #region 线程方法
- /// <summary>
- /// 开启交换线程
- /// </summary>
- private void StartSwitchThread()
- {
- IsSwitch = true;
- SwitchIdentifyImageThread = new Thread(SwitchIdentifyImageProcess);
- SwitchIdentifyImageThread.Start();
- }
- /// <summary>
- /// 关闭交换线程
- /// </summary>
- private void StopSwitchThread()
- {
- try
- {
- // 标志位设为false
- IsSwitch = false;
- if (SwitchIdentifyImageThread != null && SwitchIdentifyImageThread.IsAlive)
- SwitchIdentifyImageThread.Join();
- SystemAlarm.AlarmCancel(AlarmMessageList.数据分配线程停止失败);
- }
- catch (Exception ex)
- {
- SystemAlarm.AlarmAlert(AlarmMessageList.数据分配线程停止失败, "stop thread failed!, " + ex.Message, "DLL:MainThreadClass-StopSwitchThread");
- //FaultLog.RecordErrorMessage("MainThreadClass-StopSwitchThread:Stop thread failed!, " + ex.Message);
- Console.WriteLine("MainThreadClass-StopSwitchThread:Stop thread failed!, " + ex.Message);
- throw;
- }
- }
- /// <summary>
- /// 交换线程
- /// </summary>
- private void SwitchIdentifyImageProcess()
- {
- //Stopwatch stopwatch = Stopwatch.StartNew();
- //stopwatch.Start();
- while (IsSwitch)
- {
- //if (stopwatch.ElapsedMilliseconds > 1000)
- //{
- //Console.WriteLine("交换线程-图像处理实例中的待识别图像缓存队列长度{0}", shuLiClass.ImageNum);
- //LOG.log(string.Format("交换线程-图像处理实例中的待识别图像缓存队列长度{0}", shuLiClass.ImageNum),6);
- //GC.Collect();
- //stopwatch.Restart();
- //}
- bool result = cameraClass.GetOnceImage(out IFrameOut IFramedata);
- if (result)
- {
- //Debug模式,不进行图像处理
- if (_IsDebug)
- {
- _images.Enqueue(IFramedata.Image);
- if (_images.Count > 5)
- {
- _images.TryDequeue(out IImage image);
- image.Dispose();
- }
- }
- if (IFramedata == null)
- continue;
- shuLiClass.SetOnceIdentifyImageData(IFramedata.Image);
- }
- else
- continue;
- IFramedata.Dispose();
- Thread.Sleep(1);
- }
- }
- /// <summary>
- /// 启动发送消息线程
- /// </summary>
- private bool StartSendBottLogicMessageThread()
- {
- bool result = false;
- try
- {
- if(!IsConnectModbus) return result;
- timeBeginPeriod(1); // 设置为1ms精度
- IsSend = true;
- SendBottLogicMessageThread = new Thread(SendBottLogicMessageProcess);
- SendBottLogicMessageThread.Start();
- SystemAlarm.AlarmCancel(AlarmMessageList.结果发送线程启动失败);
- result = true;
- }
- catch (Exception ex)
- {
- //FaultLog.RecordErrorMessage("MianThread-StartSendBottLogicMessageThread:Start thread failed!, " + ex.Message);
- SystemAlarm.AlarmAlert(AlarmMessageList.结果发送线程启动失败, "MianThread-StartSendBottLogicMessageThread:Start thread failed!, " + ex.Message, "DLL:MainThreadClass-StartSendBottLogicMessageThread");
- Console.WriteLine("MianThread-StartSendBottLogicMessageThread:Start thread failed!, " + ex.Message);
- result = false;
- }
- return result;
- }
- /// <summary>
- /// 停止发送消息线程
- /// </summary>
- private void StopSendBottLogicMessageThread()
- {
- try
- {
- // 标志位设为false
- IsSend = false;
- if (SendBottLogicMessageThread != null && SendBottLogicMessageThread.IsAlive)
- SendBottLogicMessageThread.Join();
- //if (modbusTcpClient != null) modbusTcpClient.Disconnect();
- SystemAlarm.AlarmCancel(AlarmMessageList.结果发送线程停止失败);
- }
- catch (Exception ex)
- {
- //FaultLog.RecordErrorMessage("Start thread failed!, " + ex.Message);
- SystemAlarm.AlarmAlert(AlarmMessageList.结果发送线程停止失败, "MianThread-StopSendBottLogicMessageThread:Stop thread failed!, " + ex.Message, "DLL:MainThreadClass-StopSendBottLogicMessageThread");
- throw;
- }
- }
- /// <summary>
- /// 信息发送线程
- /// </summary>
- private void SendBottLogicMessageProcess1()
- {
- //获取数据
- TestSenMessage sendMessage;
- bool AllowTransfer;
- bool TransferDone;
- Stopwatch sw = Stopwatch.StartNew();
- while (IsSend)
- {
- //LOG.log("进入线程", 6);
- sw.Restart();
- sendMessage = new TestSenMessage();
- //读取装瓶状态
- AllowTransfer = false;
- TransferDone = false;
- bool[] ReturnValue = null;
- modbusTcpClient.ReadCoilsRegister(slaveId: 1, startAddress: 11, numRegisters: 2,out ReturnValue);
- if (ReturnValue == null)
- {
- continue;
- }
- AllowTransfer = ReturnValue[1];
- TransferDone = ReturnValue[0];
- //LOG.log(string.Format("读取值:AllowTransfer[0]:{0},TransferDone[1]:{1}", AllowTransfer, TransferDone), 6);
- //当允许写入且处于未写入的状态时
- if (AllowTransfer && !TransferDone)
- {
- if (SendQueue.Count() > 0)
- {
- if (!SendQueue.TryDequeue(out sendMessage))
- {
- //FaultLog.RecordErrorMessage("MainThreadClass-SendBottLogicMessageProcess-SendQueue.TryDequeue failed!");
- }
- }
- if (sendMessage.Message == null)
- {
- continue;
- }
- if (sendMessage.Message[0] != 0|| sendMessage.Message[1] != 0)
- {
- //写入数据
- modbusTcpClient.WriteMultipleRegisters(slaveId: 1, startAddress: 100, values: sendMessage.Message);
- modbusTcpClient.WriteCoilsRegister(slaveId: 1, CoilsAddress: 11, values: true);
- sw.Stop();
- LOG.log(string.Format("SendMessageOk:{0},SendMessageNg:{1},此次写值耗时:{2},此次写入数据量{3}", sendMessage.Message[0],sendMessage.Message[1], sw.Elapsed,sendMessage.count), 6);
- }
- }
- Thread.Sleep(1);
- }
- }
- /// <summary>
- /// 信息发送线程2
- /// </summary>
- private void SendBottLogicMessageProcess()
- {
- //获取数据
- TestSenMessage sendMessage;
- Stopwatch sw = Stopwatch.StartNew();
- ushort writedoneMes = 0;
- writedoneMes |= (ushort)(1 << 0);
- while (IsSend)
- {
- //LOG.log("进入线程", 6);
- sw.Restart();
- sendMessage = new TestSenMessage();
- ushort[] ReturnValue = null;
- ushort[] result = new ushort[20];
- modbusTcpClient.ReadHoldingRegisters(slaveId: 1, startAddress: 0, numRegisters: 1, out ReturnValue);
- if (ReturnValue == null)
- {
- continue;
- }
- if ((ReturnValue[0] & 1) == 0)
- {
- if (SendQueue.Count > 0)
- {
- int SendMessageCount = SendQueue.Count > 10 ? 10 : SendQueue.Count;
- LOG.log(string.Format("待发送数量{0}", SendQueue.Count), 6);
- for (int i = 0; i < SendMessageCount; i++)
- {
- if (!SendQueue.TryDequeue(out sendMessage))
- {
- //FaultLog.RecordErrorMessage("MainThreadClass-SendBottLogicMessageProcess-SendQueue.TryDequeue failed!");
- }
- if (sendMessage.Message == null)
- {
- continue;
- }
- result[i * 2] = sendMessage.Message[0];
- result[i * 2 + 1] = sendMessage.Message[1];
- }
- }
- }
- //写入数据
- modbusTcpClient.WriteMultipleRegisters(slaveId: 1, startAddress: 100, values: result);
- modbusTcpClient.WriteSingleRegister(slaveId: 1, registerAddress: 0, value: writedoneMes);
- if (result[0] != 0 || result[1] != 0)
- {
- LOG.log(string.Format("SendMess1Ok:{0},SendMess1Ng:{1},SendMess2Ok:{2},SendMess2Ng:{3}," +
- "\nSendMessage3Ok:{4},SendMessage3Ng:{5},SendMessage4Ok:{6},SendMessage4Ng:{7}," +
- "\nSendMessage5Ok:{8},SendMessage5Ng:{9},SendMessage6Ok:{10},SendMessage6Ng:{11}," +
- "\nSendMessage7Ok:{12},SendMessage7Ng:{13},SendMessage8Ok:{14},SendMessage8Ng:{15}," +
- "\nSendMessage9Ok:{16},SendMessage9Ng:{17},SendMessage10Ok:{18},SendMessage10Ng:{19}," +
- "\n此次写值耗时:{20},此次写入数据量{21}",
- result[0], result[1], result[2], result[3],
- result[4], result[5], result[6], result[7],
- result[8], result[9], result[10], result[11],
- result[12], result[13], result[14], result[15],
- result[16], result[17], result[18], result[19],
- sw.Elapsed, sendMessage.count), 6);
- }
- sw.Stop();
- int sleepvalue = 10 - (int)sw.ElapsedMilliseconds;
- if (sleepvalue > 0)
- {
- Thread.Sleep(sleepvalue);
- }
- else
- {
- FaultLog.RecordErrorMessage("MainThreadClass-SendBottLogicMessageProcess-SendQueue.SendMessage TimeOut");
- }
- }
- }
- #endregion
- #region 外部函数
- [DllImport("winmm.dll")]
- static extern uint timeBeginPeriod(uint period);
- #endregion
- }
- public class TestSenMessage
- {
- public ushort[] Message { get; set; }
- //public Int16 Message { get; set; }
- public ushort[] NumMessage { get; set; }
- public ushort count { get; set; }
- }
- }
|