轮胎外观检测添加思谋语义分割模型检测工具
C3204
14 小时以前 9f977a3c2d872b18eb69199b7b1ec18da485dc4e
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
2026-04-07 17:30:05,408 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 17:30:12,531 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 17:30:12,546 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 17:30:12,547 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 17:30:12,548 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 17:30:12,548 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 17:30:13,113 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 17:30:13,120 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 17:30:13,344 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 17:30:13,346 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 17:30:13,354 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 17:30:13,357 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 17:30:13,369 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 17:30:13,797 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 17:30:13,913 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 17:30:13,942 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 17:30:13,943 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 17:30:13,996 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 17:30:14,016 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 17:30:14,019 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 17:30:14,020 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 17:30:14,021 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 17:30:14,043 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 17:30:14,046 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 17:30:14,051 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 17:30:14,056 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 17:30:14,058 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 17:30:48,322 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 17:30:54,722 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 17:30:54,727 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 17:30:54,731 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 17:30:54,731 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 17:30:54,732 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 17:30:55,269 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 17:30:55,270 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 17:30:55,495 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 17:30:55,498 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 17:30:55,504 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 17:30:55,505 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 17:30:55,511 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 17:30:55,931 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 17:30:56,024 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 17:30:56,045 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 17:30:56,046 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 17:30:56,088 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 17:30:56,105 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 17:30:56,107 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 17:30:56,109 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 17:30:56,110 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 17:30:56,136 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 17:30:56,139 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 17:30:56,144 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 17:30:56,146 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 17:30:56,148 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 17:30:57,411 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 17:31:20,893 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 17:31:20,902 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 17:31:20,906 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 17:34:33,572 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 17:34:39,813 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 17:34:39,821 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 17:34:39,822 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 17:34:39,822 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 17:34:39,823 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 17:34:40,660 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 17:34:40,661 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 17:34:40,871 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 17:34:40,878 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 17:34:40,888 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 17:34:40,890 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 17:34:40,897 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 17:34:41,270 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 17:34:41,373 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 17:34:41,380 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 17:34:41,381 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 17:34:41,451 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 17:34:41,467 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 17:34:41,468 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 17:34:41,470 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 17:34:41,472 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 17:34:41,500 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 17:34:41,500 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 17:34:41,504 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 17:34:41,507 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 17:34:41,509 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 17:34:42,795 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 17:36:07,708 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 17:36:13,615 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 17:36:13,620 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 17:36:13,620 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 17:36:13,621 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 17:36:13,621 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 17:36:14,454 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 17:36:14,456 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 17:36:14,700 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 17:36:14,705 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 17:36:14,711 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 17:36:14,712 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 17:36:14,724 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 17:36:15,089 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 17:36:15,200 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 17:36:15,208 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 17:36:15,210 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 17:36:15,256 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 17:36:15,270 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 17:36:15,271 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 17:36:15,272 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 17:36:15,273 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 17:36:15,299 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 17:36:15,300 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 17:36:15,303 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 17:36:15,305 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 17:36:15,310 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 17:36:16,608 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 17:36:51,662 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 17:36:51,801 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Closed
2026-04-07 17:36:53,075 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 17:36:53,129 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 17:36:53,131 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加相机[LBCamera][LX300253A205C003]成功
2026-04-07 17:37:11,139 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 17:37:20,507 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x20000)
2026-04-07 17:37:20,507 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 17:37:20,567 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 17:37:25,993 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 17:37:35,320 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 2 帧 (352x20000)
2026-04-07 17:37:35,323 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 17:37:35,378 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 17:37:54,743 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Closed
2026-04-07 17:37:54,744 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:断连相机[LX300253A205C003]成功
2026-04-07 17:37:56,647 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 17:37:56,661 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 17:37:56,664 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 17:39:07,676 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 17:39:13,705 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 17:39:13,710 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 17:39:13,722 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 17:39:13,722 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 17:39:13,723 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 17:39:14,267 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 17:39:14,268 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 17:39:16,972 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 17:39:16,973 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 17:39:16,974 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 17:39:16,976 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 17:39:16,982 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 17:39:16,984 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 17:39:16,990 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 17:39:17,393 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 17:39:17,490 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 17:39:17,504 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 17:39:17,505 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 17:39:17,554 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 17:39:17,572 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 17:39:17,573 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 17:39:17,574 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 17:39:17,575 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 17:39:17,594 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 17:39:17,603 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 17:39:17,607 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 17:39:17,610 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 17:39:17,612 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 17:39:18,958 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 17:39:23,910 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 17:39:23,914 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 17:39:23,920 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 17:44:52,746 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 17:44:58,562 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 17:44:58,566 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 17:44:58,567 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 17:44:58,567 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 17:44:58,568 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 17:44:59,121 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 17:44:59,122 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 17:45:01,778 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 17:45:01,779 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 17:45:01,780 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 17:45:01,782 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 17:45:01,789 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 17:45:01,791 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 17:45:01,799 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 17:45:02,216 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 17:45:02,301 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 17:45:02,318 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 17:45:02,319 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 17:45:02,362 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 17:45:02,376 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 17:45:02,378 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 17:45:02,379 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 17:45:02,379 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 17:45:02,401 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 17:45:02,402 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 17:45:02,405 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 17:45:02,407 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 17:45:02,409 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 17:45:03,729 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 17:45:09,427 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 17:45:18,800 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x20000)
2026-04-07 17:45:18,800 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 17:45:18,853 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 17:45:36,486 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 17:45:36,489 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 17:45:36,492 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 17:51:50,051 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 17:51:53,918 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 17:51:53,931 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 17:51:53,932 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 17:51:53,932 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 17:51:53,933 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 17:51:54,007 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 17:51:54,009 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 17:51:59,047 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 17:51:59,050 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 17:51:59,055 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 17:51:59,077 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 17:51:59,089 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 17:51:59,112 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 17:51:59,303 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 17:51:59,360 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 17:51:59,364 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 17:51:59,367 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 17:51:59,445 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 17:51:59,479 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 17:51:59,484 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 17:51:59,486 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 17:51:59,488 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 17:51:59,507 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 17:51:59,513 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 17:51:59,522 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 17:51:59,533 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 17:51:59,540 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 17:52:21,273 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 17:52:21,281 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 17:52:21,289 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 17:52:50,526 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 17:52:52,993 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 17:52:52,998 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 17:52:52,999 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 17:52:53,001 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 17:52:53,001 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 17:52:53,044 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 17:52:53,044 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 17:52:58,069 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 17:52:58,070 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 17:52:58,071 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 17:52:58,076 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 17:52:58,078 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 17:52:58,083 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 17:52:58,146 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 17:52:58,171 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 17:52:58,172 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 17:52:58,173 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 17:52:58,201 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 17:52:58,214 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 17:52:58,216 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 17:52:58,217 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 17:52:58,217 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 17:52:58,231 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 17:52:58,231 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 17:52:58,234 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 17:52:58,236 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 17:52:58,238 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 17:52:58,506 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 17:54:01,709 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:断连相机[LX300253A205C003]成功
2026-04-07 17:54:03,119 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]移除触发通讯
2026-04-07 17:54:03,122 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 已清空所有图像缓存
2026-04-07 17:54:03,122 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:移除相机[LX300253A205C003]
2026-04-07 17:54:17,137 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 17:54:17,139 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 17:54:17,144 [6] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 18:39:57,205 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 18:40:03,993 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 18:40:04,006 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 18:40:04,006 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 18:40:04,007 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 18:40:04,007 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 18:40:04,557 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 18:40:04,558 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 18:40:04,755 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 18:40:04,756 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 18:40:04,762 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 18:40:04,764 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 18:40:04,773 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 18:40:05,161 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 18:40:05,247 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 18:40:05,249 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 18:40:05,250 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 18:40:05,292 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 18:40:05,313 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 18:40:05,314 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 18:40:05,314 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 18:40:05,316 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 18:40:05,330 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 18:40:05,331 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 18:40:05,335 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 18:40:05,337 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 18:40:05,339 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 18:40:06,577 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 18:40:31,170 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 18:40:31,293 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Closed
2026-04-07 18:40:32,423 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 18:40:32,452 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 18:40:32,454 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加相机[LBCamera][LX300253A205C003]成功
2026-04-07 18:40:40,618 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:40:49,540 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Flushing partial buffer (19063 lines) on stop
2026-04-07 18:40:49,589 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x19063)
2026-04-07 18:40:49,590 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:40:49,729 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:40:54,873 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Flushing partial buffer (10949 lines) on stop
2026-04-07 18:40:54,874 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 2 帧 (352x10949)
2026-04-07 18:40:54,875 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:42:30,280 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:42:31,313 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 3 帧 (352x2000)
2026-04-07 18:42:31,314 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:42:31,390 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:42:36,323 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:42:37,309 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 4 帧 (352x2000)
2026-04-07 18:42:37,311 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:42:37,365 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:42:37,941 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]:开始连续采集
2026-04-07 18:42:38,909 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 5 帧 (352x2000)
2026-04-07 18:42:38,910 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:42:38,968 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Continuous mode frame ended, restarting...
2026-04-07 18:42:39,955 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 6 帧 (352x2000)
2026-04-07 18:42:39,958 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:42:40,013 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Continuous mode frame ended, restarting...
2026-04-07 18:42:40,319 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Flushing partial buffer (503 lines) on stop
2026-04-07 18:42:40,320 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 7 帧 (352x503)
2026-04-07 18:42:40,321 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:42:41,758 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:42:42,729 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 8 帧 (352x2000)
2026-04-07 18:42:42,729 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:42:42,816 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:42:53,440 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:42:54,421 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 9 帧 (352x2000)
2026-04-07 18:42:54,423 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:42:54,479 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:42:58,742 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 18:42:58,849 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 18:42:58,860 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 18:42:58,913 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 18:42:59,223 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:43:00,159 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]运行成功
2026-04-07 18:43:00,161 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 18:43:00,225 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 10 帧 (352x2000)
2026-04-07 18:43:00,227 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:43:00,268 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:43:00,314 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 18:43:00,334 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 18:43:03,988 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 18:43:03,992 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 18:43:03,994 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 18:43:04,089 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:43:04,097 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 18:43:04,864 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]运行成功
2026-04-07 18:43:04,897 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 18:43:05,067 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 11 帧 (352x2000)
2026-04-07 18:43:05,068 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:43:05,119 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 18:43:05,122 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:43:05,130 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 18:45:13,533 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 18:45:13,537 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 18:45:13,539 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 18:54:43,763 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 18:54:49,507 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 18:54:49,514 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 18:54:49,515 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 18:54:49,515 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 18:54:49,516 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 18:54:50,024 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 18:54:50,025 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 18:54:52,622 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 18:54:52,622 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 18:54:52,623 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 18:54:52,624 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 18:54:52,630 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 18:54:52,635 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 18:54:52,641 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 18:54:53,047 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 18:54:53,127 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:54:53,164 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 18:54:53,178 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 18:54:53,179 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 18:54:53,234 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 18:54:53,244 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 18:54:53,246 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 18:54:53,247 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 18:54:53,247 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 18:54:53,258 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 18:54:53,259 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 18:54:53,262 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 18:54:53,265 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 18:54:53,266 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 18:54:54,311 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x2000)
2026-04-07 18:54:54,312 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:54:54,404 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:54:54,593 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 18:55:02,292 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:55:03,272 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 2 帧 (352x2000)
2026-04-07 18:55:03,273 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:55:03,363 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:55:15,200 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[[EK64127CAK00002]]加载触发通讯
2026-04-07 18:55:15,203 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加相机[HRCamera][[EK64127CAK00002]]成功
2026-04-07 18:55:19,330 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}1
2026-04-07 18:55:57,943 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}5
2026-04-07 18:56:16,410 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 18:56:16,454 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 18:56:16,507 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 18:56:16,552 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 18:56:16,861 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:56:17,895 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"FALSE"
2026-04-07 18:56:17,928 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 3 帧 (352x2000)
2026-04-07 18:56:17,929 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:56:17,983 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 18:56:17,987 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:56:18,007 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 18:56:39,257 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 18:56:39,261 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 18:56:39,273 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 18:56:39,443 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:56:39,448 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 18:56:40,438 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"FALSE"
2026-04-07 18:56:40,441 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 4 帧 (352x2000)
2026-04-07 18:56:40,442 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:56:40,500 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:56:40,508 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 18:56:40,532 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 18:57:14,012 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}8
2026-04-07 18:57:26,453 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 18:57:26,497 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 18:57:26,501 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 18:57:26,730 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:57:26,732 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 18:57:27,771 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"FALSE"
2026-04-07 18:57:27,794 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 5 帧 (352x2000)
2026-04-07 18:57:27,794 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:57:27,848 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 18:57:27,851 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:57:27,870 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 18:57:51,062 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 18:57:51,065 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 18:57:51,067 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 18:57:59,258 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 18:58:04,617 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 18:58:04,620 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 18:58:04,621 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 18:58:04,621 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 18:58:04,622 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 18:58:05,436 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 18:58:05,437 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 18:58:08,105 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 18:58:08,105 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 18:58:08,542 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[[EK64127CAK00002]]加载触发通讯
2026-04-07 18:58:08,543 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 18:58:08,544 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 18:58:08,551 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 18:58:08,552 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 18:58:08,558 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 18:58:08,923 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 18:58:09,009 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:58:09,044 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 18:58:09,054 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 18:58:09,101 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 18:58:09,129 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 18:58:09,140 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 18:58:09,523 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 18:58:09,524 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 18:58:09,525 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 18:58:09,537 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 18:58:09,537 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 18:58:09,541 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 18:58:09,543 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 18:58:09,544 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 18:58:10,101 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x2000)
2026-04-07 18:58:10,101 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:58:10,186 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:58:10,713 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 18:58:13,256 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 18:58:13,301 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 18:58:13,308 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 18:58:13,351 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 18:58:13,644 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 18:58:13,768 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}1
2026-04-07 18:58:14,623 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 2 帧 (352x2000)
2026-04-07 18:58:14,624 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 18:58:14,676 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 18:58:14,677 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 18:58:14,682 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 18:58:14,775 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"FALSE"
2026-04-07 18:58:47,253 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 18:58:50,500 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 18:58:55,834 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 18:58:55,836 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 18:58:55,839 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 19:23:16,518 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 19:23:24,134 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 19:23:24,145 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 19:23:24,146 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 19:23:24,150 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 19:23:24,152 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 19:23:45,863 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 19:23:45,865 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 19:23:49,500 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 19:23:49,500 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 19:23:50,112 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[[EK64127CAK00002]]加载触发通讯
2026-04-07 19:23:50,113 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 19:23:50,115 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 19:23:50,122 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 19:23:50,126 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 19:23:50,136 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 19:23:50,528 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 19:23:50,626 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:23:50,658 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 19:23:50,660 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 19:23:50,661 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 19:23:50,741 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 19:23:50,755 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 19:24:04,148 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x2000)
2026-04-07 19:24:04,152 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:24:08,721 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:24:43,208 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}1
2026-04-07 19:24:43,600 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 19:24:43,636 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 19:24:43,637 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 19:24:43,729 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 19:24:43,730 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 19:24:43,733 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 19:24:43,771 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 19:24:43,776 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 19:24:52,131 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 19:24:52,135 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 19:24:52,138 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 19:26:20,881 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 19:26:26,731 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 19:26:26,739 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 19:26:26,739 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 19:26:26,740 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 19:26:26,740 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 19:26:48,417 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 19:26:48,418 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 19:26:51,065 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 19:26:51,066 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 19:26:51,566 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[[EK64127CAK00002]]加载触发通讯
2026-04-07 19:26:51,567 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 19:26:51,568 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 19:26:51,574 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 19:26:51,576 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 19:26:51,582 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 19:26:52,004 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 19:26:52,099 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:26:52,134 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 19:26:52,179 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 19:26:52,180 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 19:26:52,211 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 19:26:52,225 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 19:26:52,537 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 19:26:52,538 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 19:26:52,538 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 19:26:52,551 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 19:26:52,552 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 19:26:52,555 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 19:26:52,558 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 19:26:52,559 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 19:26:53,247 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x2000)
2026-04-07 19:26:53,248 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:26:53,362 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:26:53,771 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 19:26:57,220 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 19:26:57,329 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 19:26:57,335 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 19:26:57,377 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:27:03,605 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"FALSE"
2026-04-07 19:27:04,283 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]图像已加入缓存,当前缓存数量:0
2026-04-07 19:27:06,287 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[[EK64127CAK00002]]: 图像入队,当前队列:1
2026-04-07 19:27:08,445 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}1
2026-04-07 19:27:08,507 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:27:09,482 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 2 帧 (352x2000)
2026-04-07 19:27:09,483 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:27:09,525 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:27:09,534 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 19:27:09,558 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:27:26,366 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:27:31,847 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]图像已加入缓存,当前缓存数量:0
2026-04-07 19:27:34,064 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[[EK64127CAK00002]]: 图像入队,当前队列:1
2026-04-07 19:27:41,470 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}2
2026-04-07 19:29:18,709 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:31:02,169 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:31:07,760 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:32:58,570 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 19:32:58,578 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 19:32:58,581 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 19:33:06,972 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 19:33:12,613 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 19:33:12,616 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 19:33:12,617 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 19:33:12,617 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 19:33:12,618 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 19:33:34,259 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 19:33:34,259 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 19:33:37,874 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 19:33:37,875 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 19:33:38,380 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[[EK64127CAK00002]]加载触发通讯
2026-04-07 19:33:38,383 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 19:33:38,385 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 19:33:38,391 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 19:33:38,392 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 19:33:38,398 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 19:33:38,743 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 19:33:38,836 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:33:38,868 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 19:33:38,880 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 19:33:38,882 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 19:33:38,953 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 19:33:38,965 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 19:33:39,267 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 19:33:39,268 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 19:33:39,269 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 19:33:39,285 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 19:33:39,287 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 19:33:39,290 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 19:33:39,292 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 19:33:39,294 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 19:33:39,991 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x2000)
2026-04-07 19:33:39,992 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:33:40,111 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:33:40,463 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 19:33:46,340 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:41:49,393 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 19:41:56,402 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 19:41:56,407 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 19:41:56,407 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 19:41:56,408 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 19:41:56,408 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 19:42:18,049 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 19:42:18,050 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 19:42:20,720 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 19:42:20,720 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 19:42:21,284 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[[EK64127CAK00002]]加载触发通讯
2026-04-07 19:42:21,285 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 19:42:21,287 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 19:42:21,293 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 19:42:21,295 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 19:42:21,301 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 19:42:21,677 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 19:42:21,777 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:42:21,811 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 19:42:21,818 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 19:42:21,819 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 19:42:21,890 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 19:42:21,904 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 19:42:22,201 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 19:42:22,203 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 19:42:22,203 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 19:42:22,223 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 19:42:22,224 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 19:42:22,229 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 19:42:22,231 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 19:42:22,233 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 19:42:22,995 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x2000)
2026-04-07 19:42:23,001 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:42:23,075 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:42:23,409 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 19:42:35,223 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 19:42:35,226 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 19:42:35,230 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功
2026-04-07 19:43:41,294 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:日志系统启动成功
2026-04-07 19:43:47,653 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Run
2026-04-07 19:43:47,656 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Debug
2026-04-07 19:43:47,657 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Error
2026-04-07 19:43:47,658 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Fatal
2026-04-07 19:43:47,658 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:ℹ️ 目录已存在: D:\项目\轮胎外观检测\SmartVision\LB_SmartVision\bin\Debug\net8.0-windows\Log\Warn
2026-04-07 19:44:09,323 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯口[通讯口0]加载触发通讯
2026-04-07 19:44:09,324 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯加载成功
2026-04-07 19:44:11,933 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Connected and initialized successfully (Manual Data Mode)
2026-04-07 19:44:11,934 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[LX300253A205C003]加载触发通讯
2026-04-07 19:44:12,432 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机[[EK64127CAK00002]]加载触发通讯
2026-04-07 19:44:12,433 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:相机加载成功
2026-04-07 19:44:12,435 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:读码器加载成功
2026-04-07 19:44:12,440 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量加载成功
2026-04-07 19:44:12,442 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:运动控制参数加载成功
2026-04-07 19:44:12,448 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:光源控制加载成功
2026-04-07 19:44:12,817 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[结束]
2026-04-07 19:44:12,913 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:44:12,947 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[相机取图]
2026-04-07 19:44:12,990 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]添加步骤[开始]
2026-04-07 19:44:12,991 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]加载成功
2026-04-07 19:44:13,023 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程0]
2026-04-07 19:44:13,037 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[结束]
2026-04-07 19:44:13,329 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[相机取图]
2026-04-07 19:44:13,329 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]添加步骤[开始]
2026-04-07 19:44:13,331 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]加载成功
2026-04-07 19:44:13,344 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:添加流程[流程1]
2026-04-07 19:44:13,344 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程加载成功
2026-04-07 19:44:13,348 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程设置加载成功
2026-04-07 19:44:13,351 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程布局加载成功
2026-04-07 19:44:13,355 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程表格加载成功
2026-04-07 19:44:14,169 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:44:14,169 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Flushing partial buffer (1957 lines) on completion
2026-04-07 19:44:14,176 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 1 帧 (352x1957)
2026-04-07 19:44:14,177 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:44:14,547 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:数据库和表创建成功!
2026-04-07 19:44:18,383 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 19:44:18,429 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 19:44:18,434 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 19:44:18,475 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:44:18,960 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]运行成功
2026-04-07 19:44:19,038 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:19,082 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:44:20,058 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 2 帧 (352x2000)
2026-04-07 19:44:20,061 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:44:20,124 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 19:44:20,129 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:44:20,132 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:22,020 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 19:44:22,026 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 19:44:22,030 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 19:44:22,210 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:44:22,221 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]图像已加入缓存,当前缓存数量:0
2026-04-07 19:44:22,221 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[[EK64127CAK00002]]: 图像入队,当前队列:1
2026-04-07 19:44:22,227 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}2
2026-04-07 19:44:22,259 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:44:22,276 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]运行成功
2026-04-07 19:44:22,288 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:23,187 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 3 帧 (352x2000)
2026-04-07 19:44:23,188 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:44:23,240 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 19:44:23,243 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:44:23,261 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:27,195 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 19:44:27,199 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 19:44:27,204 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 19:44:27,356 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:44:27,361 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:44:27,364 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]图像已加入缓存,当前缓存数量:0
2026-04-07 19:44:27,365 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[[EK64127CAK00002]]: 图像入队,当前队列:1
2026-04-07 19:44:27,366 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:[EK64127CAK00002]Get frame blockId = {0}3
2026-04-07 19:44:27,424 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]运行成功
2026-04-07 19:44:27,442 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:28,342 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 4 帧 (352x2000)
2026-04-07 19:44:28,343 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:44:28,394 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 19:44:28,396 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:44:28,417 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:30,716 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 19:44:30,721 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 19:44:30,763 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 19:44:30,871 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:44:30,879 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:44:30,927 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]运行成功
2026-04-07 19:44:30,942 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:31,867 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 5 帧 (352x2000)
2026-04-07 19:44:31,868 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:44:31,921 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 19:44:31,924 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:44:31,927 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:35,490 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 19:44:35,492 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 19:44:35,495 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 19:44:35,657 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:44:35,666 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:44:35,712 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]运行成功
2026-04-07 19:44:35,724 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:44:36,626 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 6 帧 (352x2000)
2026-04-07 19:44:36,627 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:44:36,684 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:44:36,694 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 19:44:36,717 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:45:21,351 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:通讯[通讯口0]接收到的消息"True"
2026-04-07 19:45:21,439 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:检查到可被触发的流程,清空所有流程运行完成标记位!
2026-04-07 19:45:21,453 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]开始运行
2026-04-07 19:45:21,513 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 开始单次采集
2026-04-07 19:45:21,585 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]开始运行
2026-04-07 19:45:21,635 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程1]运行成功
2026-04-07 19:45:21,645 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:45:22,545 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 生成第 7 帧 (352x2000)
2026-04-07 19:45:22,546 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: 图像入队,当前队列:1
2026-04-07 19:45:22,596 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程[流程0]运行成功
2026-04-07 19:45:22,598 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:发送给[通讯口0]了消息"True"
2026-04-07 19:45:22,599 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:LBCamera[LX300253A205C003]: Single grab completed by SDK
2026-04-07 19:46:01,772 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:流程运行设置保存成功
2026-04-07 19:46:01,776 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局变量保存成功
2026-04-07 19:46:01,778 [12] INFO  LB_SmartVisionCommon.AsyncLogHelper - 记录信息:全局布局保存成功