C3204
2026-01-13 67fd626e321eb93bcc6427e017e536e696b0270a
LB_VisionProcesses/Cameras/HRCameras/HRCamera.cs
@@ -218,10 +218,11 @@
            try
            {
                Bitmap bitmap = ConvertFrameToBitmap(frame);
                // 释放帧数据
                // release frame
                _camera.IMV_ReleaseFrame(ref frame);
                Task.Factory.StartNew(() =>
                {
                CallBackImg = (Bitmap)bitmap.Clone();
                if (CallBackImg == null)
                {
@@ -233,6 +234,7 @@
                        TriggerRunMessageReceived?.Invoke(SN, source.ToString());  // 触发运行事件
                }
                bitmap.Dispose();
                });
            }
            catch { }
            AsyncLogHelper.Info(SN + "Get frame blockId = {0}" + frame.frameInfo.blockId);