forked from samtecmicroelectronics/code-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMRSI_VISION.LOG
executable file
·8843 lines (8843 loc) · 498 KB
/
MRSI_VISION.LOG
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
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
16:29: 4:188 BT: Area(0, 0): 8727 is good. Gold-Area: 8720, Tol: 5
16:29:04:188 TRC DONE - Period: 15.68
16:29:04:188 Map: 0, Camera: 2, Center: (502.379, 377.711), Angle: 0.00, Perimeter: 306, Area: 8727, Pass: 1
16:29:04:188 ,1,502.379, 377.711,29326,
16:29:04:188 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:04:188 PROCESS is done
16:29:05:704 PROCESS_MSG(lParam: 1) is received
16:29:05:704 Not a newly created file. File name : 4f620c3c-251f4-74a2
16:29:05:704 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:05:704 ###GetVisData():VideoFile is : 4f620c3c-251f4-74a2
16:29:05:735 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c3c-251f4-74a2.VID
16:29:05:735 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c3c-251f4-74a2cogP.VID
16:29:05:750 SNAP ON (Camera 2)
16:29:05:797 SNAP DONE - Period: 54.14
16:29:05:813 TRC ON
16:29: 5:829 BT: Area(18, 0): 8280 is good. Gold-Area: 8576, Tol: 5
16:29:05:829 TRC DONE - Period: 17.02
16:29:05:829 Map: 0, Camera: 2, Center: (528.681, 380.581), Angle: 0.00, Perimeter: 319, Area: 8280, Pass: 1
16:29:05:829 ,1,528.681, 380.581,29327,
16:29:05:829 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:05:829 PROCESS is done
16:29:07:329 PROCESS_MSG(lParam: 1) is received
16:29:07:329 Not a newly created file. File name : 4f620c5c-2525c-342f
16:29:07:329 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:07:329 ###GetVisData():VideoFile is : 4f620c5c-2525c-342f
16:29:07:375 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c5c-2525c-342f.VID
16:29:07:375 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c5c-2525c-342fcogP.VID
16:29:07:375 SNAP ON (Camera 2)
16:29:07:438 SNAP DONE - Period: 66.95
16:29:07:454 TRC ON
16:29: 7:469 BT: Area(18, 0): 8181 is good. Gold-Area: 8565, Tol: 5
16:29:07:469 TRC DONE - Period: 16.81
16:29:07:469 Map: 0, Camera: 2, Center: (529.088, 377.489), Angle: 0.00, Perimeter: 314, Area: 8181, Pass: 1
16:29:07:469 ,1,529.088, 377.489,29328,
16:29:07:469 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:07:469 PROCESS is done
16:29:09:032 PROCESS_MSG(lParam: 1) is received
16:29:09:032 Not a newly created file. File name : 4fa2a86a-24f38-51a2
16:29:09:032 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:09:032 ###GetVisData():VideoFile is : 4fa2a86a-24f38-51a2
16:29:09:063 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a86a-24f38-51a2.VID
16:29:09:063 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a86a-24f38-51a2cogP.VID
16:29:09:063 SNAP ON (Camera 2)
16:29:09:125 SNAP DONE - Period: 54.90
16:29:09:125 TRC ON
16:29: 9:125 BT: Area(0, 0): 8721 is good. Gold-Area: 8708, Tol: 5
16:29:09:125 TRC DONE - Period: 1.61
16:29:09:141 Map: 0, Camera: 2, Center: (546.286, 328.177), Angle: 0.00, Perimeter: 299, Area: 8721, Pass: 1
16:29:09:141 ,1,546.286, 328.177,29329,
16:29:09:141 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:09:141 PROCESS is done
16:29:10:641 PROCESS_MSG(lParam: 1) is received
16:29:10:641 Not a newly created file. File name : 4fa2a880-24f80-6d53
16:29:10:641 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:10:657 ###GetVisData():VideoFile is : 4fa2a880-24f80-6d53
16:29:10:719 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a880-24f80-6d53.VID
16:29:10:719 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a880-24f80-6d53cogP.VID
16:29:10:719 SNAP ON (Camera 2)
16:29:10:766 SNAP DONE - Period: 50.60
16:29:10:782 TRC ON
16:29:10:782 BT: Area(0, 0): 5130 is good. Gold-Area: 5086, Tol: 5
16:29:10:782 TRC DONE - Period: 1.51
16:29:10:782 Map: 0, Camera: 2, Center: (476.951, 431.302), Angle: 0.00, Perimeter: 240, Area: 5130, Pass: 1
16:29:10:782 ,1,476.951, 431.302,29330,
16:29:10:782 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:10:782 PROCESS is done
16:29:12:313 PROCESS_MSG(lParam: 1) is received
16:29:12:313 Not a newly created file. File name : 4fa2a8a4-24ff6-54d2
16:29:12:313 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:12:313 ###GetVisData():VideoFile is : 4fa2a8a4-24ff6-54d2
16:29:12:344 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8a4-24ff6-54d2.VID
16:29:12:344 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8a4-24ff6-54d2cogP.VID
16:29:12:344 SNAP ON (Camera 2)
16:29:12:407 SNAP DONE - Period: 60.70
16:29:12:422 TRC ON
16:29:12:422 BT: Area(0, 0): 7929 is good. Gold-Area: 8002, Tol: 5
16:29:12:422 TRC DONE - Period: 1.61
16:29:12:422 Map: 0, Camera: 2, Center: (549.887, 336.864), Angle: 0.00, Perimeter: 300, Area: 7929, Pass: 1
16:29:12:422 ,1,549.887, 336.864,29331,
16:29:12:422 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:12:422 PROCESS is done
16:29:13:938 PROCESS_MSG(lParam: 1) is received
16:29:13:938 Not a newly created file. File name : 4fa2a8b6-25030-4891
16:29:13:938 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:13:938 ###GetVisData():VideoFile is : 4fa2a8b6-25030-4891
16:29:13:969 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8b6-25030-4891.VID
16:29:13:969 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8b6-25030-4891cogP.VID
16:29:13:969 SNAP ON (Camera 2)
16:29:14:016 SNAP DONE - Period: 58.89
16:29:14:032 TRC ON
16:29:14: 32 BT: Area(0, 0): 10504 is good. Gold-Area: 10568, Tol: 5
16:29:14:032 TRC DONE - Period: 1.76
16:29:14:032 Map: 0, Camera: 2, Center: (445.636, 440.548), Angle: 0.00, Perimeter: 394, Area: 10504, Pass: 1
16:29:14:032 ,1,445.636, 440.548,29332,
16:29:14:032 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:14:032 PROCESS is done
16:29:30:344 PROCESS_MSG(lParam: 1) is received
16:29:30:344 Not a newly created file. File name : 4f62094e-24863-7329
16:29:30:344 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:30:344 ###GetVisData():VideoFile is : 4f62094e-24863-7329
16:29:30:375 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62094e-24863-7329.VID
16:29:30:375 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62094e-24863-7329cogP.VID
16:29:30:375 SNAP ON (Camera 2)
16:29:30:438 SNAP DONE - Period: 63.31
16:29:30:454 TRC ON
16:29:30:454 BT: Area(0, 0): 15186 is good. Gold-Area: 15265, Tol: 5
16:29:30:454 TRC DONE - Period: 9.08
16:29:30:454 Map: 0, Camera: 2, Center: (506.548, 380.205), Angle: 0.00, Perimeter: 395, Area: 15186, Pass: 1
16:29:30:454 ,1,506.548, 380.205,29333,
16:29:30:454 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:30:454 PROCESS is done
16:29:31:969 PROCESS_MSG(lParam: 1) is received
16:29:31:969 Not a newly created file. File name : 4f62096d-248c8-88ba
16:29:31:969 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:31:969 ###GetVisData():VideoFile is : 4f62096d-248c8-88ba
16:29:32:000 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62096d-248c8-88ba.VID
16:29:32:000 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62096d-248c8-88bacogP.VID
16:29:32:000 SNAP ON (Camera 2)
16:29:32:047 SNAP DONE - Period: 50.53
16:29:32:063 TRC ON
16:29:32: 63 BT: Area(0, 0): 15084 is good. Gold-Area: 15158, Tol: 5
16:29:32:063 TRC DONE - Period: 9.03
16:29:32:063 Map: 0, Camera: 2, Center: (505.328, 380.716), Angle: 0.00, Perimeter: 395, Area: 15084, Pass: 1
16:29:32:063 ,1,505.328, 380.716,29334,
16:29:32:094 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:32:094 PROCESS is done
16:29:33:657 PROCESS_MSG(lParam: 1) is received
16:29:33:657 Not a newly created file. File name : 4f6209d0-24a0b-4556
16:29:33:657 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:33:657 ###GetVisData():VideoFile is : 4f6209d0-24a0b-4556
16:29:33:735 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209d0-24a0b-4556.VID
16:29:33:735 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209d0-24a0b-4556cogP.VID
16:29:33:735 SNAP ON (Camera 2)
16:29:33:797 SNAP DONE - Period: 62.58
16:29:33:797 TRC ON
16:29:33:813 BT: Area(0, 0): 8853 is good. Gold-Area: 8906, Tol: 5
16:29:33:813 TRC DONE - Period: 2.31
16:29:33:813 Map: 0, Camera: 2, Center: (510.407, 380.088), Angle: 0.00, Perimeter: 303, Area: 8853, Pass: 1
16:29:33:813 ,1,510.407, 380.088,29335,
16:29:33:813 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:33:813 PROCESS is done
16:29:35:329 PROCESS_MSG(lParam: 1) is received
16:29:35:329 Not a newly created file. File name : 4f6209ea-24a60-88f8
16:29:35:329 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:35:329 ###GetVisData():VideoFile is : 4f6209ea-24a60-88f8
16:29:35:344 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209ea-24a60-88f8.VID
16:29:35:344 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209ea-24a60-88f8cogP.VID
16:29:35:360 SNAP ON (Camera 2)
16:29:35:407 SNAP DONE - Period: 54.94
16:29:35:422 TRC ON
16:29:35:422 BT: Area(0, 0): 8607 is good. Gold-Area: 8709, Tol: 5
16:29:35:422 TRC DONE - Period: 2.38
16:29:35:422 Map: 0, Camera: 2, Center: (509.537, 380.081), Angle: 0.00, Perimeter: 301, Area: 8607, Pass: 1
16:29:35:422 ,1,509.537, 380.081,29336,
16:29:35:422 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:35:422 PROCESS is done
16:29:36:938 PROCESS_MSG(lParam: 1) is received
16:29:36:938 Not a newly created file. File name : 4f620a43-24b83-21b9
16:29:36:938 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:36:938 ###GetVisData():VideoFile is : 4f620a43-24b83-21b9
16:29:36:985 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a43-24b83-21b9.VID
16:29:36:985 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a43-24b83-21b9cogP.VID
16:29:36:985 SNAP ON (Camera 2)
16:29:37:047 SNAP DONE - Period: 67.81
16:29:37:063 TRC ON
16:29:37: 63 BT: Area(0, 0): 8101 is good. Gold-Area: 8229, Tol: 5
16:29:37:063 TRC DONE - Period: 2.57
16:29:37:063 Map: 0, Camera: 2, Center: (510.662, 380.867), Angle: 0.00, Perimeter: 292, Area: 8101, Pass: 1
16:29:37:063 ,1,510.662, 380.867,29337,
16:29:37:063 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:37:063 PROCESS is done
16:29:38:563 PROCESS_MSG(lParam: 1) is received
16:29:38:563 Not a newly created file. File name : 4f620a52-24bb4-1783
16:29:38:563 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:38:563 ###GetVisData():VideoFile is : 4f620a52-24bb4-1783
16:29:38:594 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a52-24bb4-1783.VID
16:29:38:594 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a52-24bb4-1783cogP.VID
16:29:38:594 SNAP ON (Camera 2)
16:29:38:657 SNAP DONE - Period: 63.73
16:29:38:672 TRC ON
16:29:38:672 BT: Area(0, 0): 8102 is good. Gold-Area: 8258, Tol: 5
16:29:38:672 TRC DONE - Period: 2.34
16:29:38:672 Map: 0, Camera: 2, Center: (510.562, 380.881), Angle: 0.00, Perimeter: 296, Area: 8102, Pass: 1
16:29:38:672 ,1,510.562, 380.881,29338,
16:29:38:672 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:38:672 PROCESS is done
16:29:41:157 PROCESS_MSG(lParam: 1) is received
16:29:41:157 Not a newly created file. File name : 52f55cea-15ab2-36de
16:29:41:157 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:41:157 ###GetVisData():VideoFile is : 52f55cea-15ab2-36de
16:29:41:172 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55cea-15ab2-36de.VID
16:29:41:172 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55cea-15ab2-36decogP.VID
16:29:41:172 SNAP ON (Camera 1)
16:29:41:235 SNAP DONE - Period: 53.06
16:29:41:250 TRC ON
16:29:41:329 TRC DONE - Period: 78.51
16:29:41:329 Map: 0, Camera: 1, Center: (619.436, 274.194), Angle: -1.81, Perimeter: 847, Area: 0, Pass: 1
16:29:41:329 ,1,619.436, 274.194,29339,
16:29:41:329 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:41:329 PROCESS is done
16:29:42:844 PROCESS_MSG(lParam: 1) is received
16:29:42:844 Not a newly created file. File name : 52f55d11-15b32-1c52
16:29:42:844 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:42:844 ###GetVisData():VideoFile is : 52f55d11-15b32-1c52
16:29:42:875 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d11-15b32-1c52.VID
16:29:42:875 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d11-15b32-1c52cogP.VID
16:29:42:875 SNAP ON (Camera 1)
16:29:42:954 SNAP DONE - Period: 67.81
16:29:42:954 TRC ON
16:29:43:032 TRC DONE - Period: 72.19
16:29:43:032 Map: 0, Camera: 1, Center: (413.177, 493.114), Angle: -2.00, Perimeter: 734, Area: 0, Pass: 1
16:29:43:032 ,1,413.177, 493.114,29340,
16:29:43:032 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:43:032 PROCESS is done
16:29:49:797 CAMERA_MSG is received. CamerID: 3
16:29:49:829 SNAP ON (Camera 3)
16:29:49:907 SNAP DONE - Period: 74.51
16:29:49:907 CAMERA_SELECT is done
16:29:50:141 PROCESS_MSG(lParam: 1) is received
16:29:50:141 Not a newly created file. File name : 52f55d73-35c72-2ef2
16:29:50:141 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:50:141 ###GetVisData():VideoFile is : 52f55d73-35c72-2ef2
16:29:50:172 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d73-35c72-2ef2.VID
16:29:50:172 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d73-35c72-2ef2cogP.VID
16:29:50:172 SNAP ON (Camera 3)
16:29:50:250 SNAP DONE - Period: 67.03
16:29:50:250 TRC ON
16:29:50:250 BT: Area(0, 0): 4300 is good. Gold-Area: 4451, Tol: 5
16:29:50:250 TRC DONE - Period: 3.43
16:29:50:266 Map: 0, Camera: 3, Center: (510.607, 366.054), Angle: 0.00, Perimeter: 212, Area: 4300, Pass: 1
16:29:50:266 ,1,510.607, 366.054,29341,
16:29:50:266 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:50:266 PROCESS is done
16:29:51:516 CAMERA_MSG is received. CamerID: 3
16:29:51:547 SNAP ON (Camera 3)
16:29:51:610 SNAP DONE - Period: 63.87
16:29:51:625 CAMERA_SELECT is done
16:29:51:860 PROCESS_MSG(lParam: 1) is received
16:29:51:860 Not a newly created file. File name : 52f55da7-35d1b-3637
16:29:51:875 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:29:51:875 ###GetVisData():VideoFile is : 52f55da7-35d1b-3637
16:29:51:907 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55da7-35d1b-3637.VID
16:29:51:907 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55da7-35d1b-3637cogP.VID
16:29:51:907 SNAP ON (Camera 3)
16:29:51:954 SNAP DONE - Period: 52.92
16:29:51:969 TRC ON
16:29:51:969 BT: Area(0, 0): 4448 is good. Gold-Area: 4623, Tol: 5
16:29:51:969 TRC DONE - Period: 3.13
16:29:51:969 Map: 0, Camera: 3, Center: (510.488, 365.802), Angle: 0.00, Perimeter: 218, Area: 4448, Pass: 1
16:29:51:969 ,1,510.488, 365.802,29342,
16:29:51:969 HANDLE: 61998794, Msg: 34816, lParam: 0
16:29:51:969 PROCESS is done
16:30:27:532 PLACEMENT_MSG is received
16:30:27:563 Not a newly created file. File name : VisDataInMap
16:30:27:563 SNAP ON (Camera 1)
16:30:27:625 SNAP DONE - Period: 63.25
16:30:27:641 Before Applying Rotation : X: 512.0, Y: 384.0, Orientation: -358.71
16:30:27:641 Center.X :512,Center.Y:384, Angle :-6.2606,Shape:0
16:30:27:641 Inner Diameter :0.0700,Outer Diameter:0.1000, Camera Mag X :0.0047,Camera Mag Y:0.0047
16:30:27:641 m_nOverlayIDPix[0] :14,m_nOverlayIDPix[1]:14, m_nOverlayODPix[0] :21,m_nOverlayODPix[1]:21
16:30:27:641 PLACEMENT is done
16:30:27:657 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:29:204 PROCESS_MSG(lParam: 1) is received
16:30:29:204 Not a newly created file. File name : 4f620baa-25017-82af
16:30:29:204 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:29:204 ###GetVisData():VideoFile is : 4f620baa-25017-82af
16:30:29:235 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620baa-25017-82af.VID
16:30:29:235 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620baa-25017-82afcogP.VID
16:30:29:235 SNAP ON (Camera 2)
16:30:29:313 SNAP DONE - Period: 76.32
16:30:29:329 TRC ON
16:30:29:329 BT: Area(0, 0): 8816 is good. Gold-Area: 8757, Tol: 5
16:30:29:329 TRC DONE - Period: 8.87
16:30:29:329 Map: 0, Camera: 2, Center: (505.145, 380.089), Angle: 0.00, Perimeter: 303, Area: 8816, Pass: 1
16:30:29:329 ,1,505.145, 380.089,29343,
16:30:29:329 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:29:329 PROCESS is done
16:30:30:844 PROCESS_MSG(lParam: 1) is received
16:30:30:844 Not a newly created file. File name : 4f620bc3-25069-1c55
16:30:30:844 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:30:844 ###GetVisData():VideoFile is : 4f620bc3-25069-1c55
16:30:30:875 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620bc3-25069-1c55.VID
16:30:30:875 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620bc3-25069-1c55cogP.VID
16:30:30:875 SNAP ON (Camera 2)
16:30:30:922 SNAP DONE - Period: 48.05
16:30:30:938 TRC ON
16:30:30:938 BT: Area(0, 0): 8728 is good. Gold-Area: 8720, Tol: 5
16:30:30:938 TRC DONE - Period: 8.99
16:30:30:938 Map: 0, Camera: 2, Center: (502.308, 377.873), Angle: 0.00, Perimeter: 302, Area: 8728, Pass: 1
16:30:30:938 ,1,502.308, 377.873,29344,
16:30:30:938 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:30:938 PROCESS is done
16:30:32:469 PROCESS_MSG(lParam: 1) is received
16:30:32:469 Not a newly created file. File name : 4f620c3c-251f4-74a2
16:30:32:469 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:32:469 ###GetVisData():VideoFile is : 4f620c3c-251f4-74a2
16:30:32:500 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c3c-251f4-74a2.VID
16:30:32:500 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c3c-251f4-74a2cogP.VID
16:30:32:500 SNAP ON (Camera 2)
16:30:32:563 SNAP DONE - Period: 59.81
16:30:32:579 TRC ON
16:30:32:594 BT: Area(18, 0): 8276 is good. Gold-Area: 8576, Tol: 5
16:30:32:594 TRC DONE - Period: 17.07
16:30:32:594 Map: 0, Camera: 2, Center: (528.341, 380.670), Angle: 0.00, Perimeter: 307, Area: 8276, Pass: 1
16:30:32:594 ,1,528.341, 380.670,29345,
16:30:32:594 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:32:594 PROCESS is done
16:30:34:094 PROCESS_MSG(lParam: 1) is received
16:30:34:094 Not a newly created file. File name : 4f620c5c-2525c-342f
16:30:34:094 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:34:094 ###GetVisData():VideoFile is : 4f620c5c-2525c-342f
16:30:34:125 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c5c-2525c-342f.VID
16:30:34:125 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c5c-2525c-342fcogP.VID
16:30:34:125 SNAP ON (Camera 2)
16:30:34:172 SNAP DONE - Period: 48.30
16:30:34:188 TRC ON
16:30:34:204 BT: Area(18, 0): 8186 is good. Gold-Area: 8565, Tol: 5
16:30:34:204 TRC DONE - Period: 17.11
16:30:34:204 Map: 0, Camera: 2, Center: (528.871, 377.605), Angle: 0.00, Perimeter: 313, Area: 8186, Pass: 1
16:30:34:204 ,1,528.871, 377.605,29346,
16:30:34:204 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:34:204 PROCESS is done
16:30:35:766 PROCESS_MSG(lParam: 1) is received
16:30:35:766 Not a newly created file. File name : 4fa2a86a-24f38-51a2
16:30:35:766 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:35:766 ###GetVisData():VideoFile is : 4fa2a86a-24f38-51a2
16:30:35:797 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a86a-24f38-51a2.VID
16:30:35:797 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a86a-24f38-51a2cogP.VID
16:30:35:797 SNAP ON (Camera 2)
16:30:35:860 SNAP DONE - Period: 62.65
16:30:35:860 TRC ON
16:30:35:875 BT: Area(0, 0): 8723 is good. Gold-Area: 8708, Tol: 5
16:30:35:875 TRC DONE - Period: 1.67
16:30:35:875 Map: 0, Camera: 2, Center: (546.015, 328.342), Angle: 0.00, Perimeter: 300, Area: 8723, Pass: 1
16:30:35:875 ,1,546.015, 328.342,29347,
16:30:35:875 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:35:875 PROCESS is done
16:30:37:391 PROCESS_MSG(lParam: 1) is received
16:30:37:391 Not a newly created file. File name : 4fa2a880-24f80-6d53
16:30:37:391 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:37:391 ###GetVisData():VideoFile is : 4fa2a880-24f80-6d53
16:30:37:407 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a880-24f80-6d53.VID
16:30:37:407 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a880-24f80-6d53cogP.VID
16:30:37:422 SNAP ON (Camera 2)
16:30:37:469 SNAP DONE - Period: 51.76
16:30:37:469 TRC ON
16:30:37:485 BT: Area(0, 0): 5112 is good. Gold-Area: 5086, Tol: 5
16:30:37:485 TRC DONE - Period: 1.58
16:30:37:485 Map: 0, Camera: 2, Center: (476.760, 431.188), Angle: 0.00, Perimeter: 237, Area: 5112, Pass: 1
16:30:37:485 ,1,476.760, 431.188,29348,
16:30:37:485 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:37:485 PROCESS is done
16:30:39:000 PROCESS_MSG(lParam: 1) is received
16:30:39:000 Not a newly created file. File name : 4fa2a8a4-24ff6-54d2
16:30:39:000 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:39:000 ###GetVisData():VideoFile is : 4fa2a8a4-24ff6-54d2
16:30:39:032 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8a4-24ff6-54d2.VID
16:30:39:032 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8a4-24ff6-54d2cogP.VID
16:30:39:032 SNAP ON (Camera 2)
16:30:39:079 SNAP DONE - Period: 46.17
16:30:39:094 TRC ON
16:30:39: 94 BT: Area(0, 0): 7932 is good. Gold-Area: 8002, Tol: 5
16:30:39:094 TRC DONE - Period: 1.61
16:30:39:094 Map: 0, Camera: 2, Center: (549.480, 337.055), Angle: 0.00, Perimeter: 296, Area: 7932, Pass: 1
16:30:39:094 ,1,549.480, 337.055,29349,
16:30:39:094 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:39:094 PROCESS is done
16:30:40:594 PROCESS_MSG(lParam: 1) is received
16:30:40:594 Not a newly created file. File name : 4fa2a8b6-25030-4891
16:30:40:594 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:40:594 ###GetVisData():VideoFile is : 4fa2a8b6-25030-4891
16:30:40:625 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8b6-25030-4891.VID
16:30:40:625 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8b6-25030-4891cogP.VID
16:30:40:625 SNAP ON (Camera 2)
16:30:40:688 SNAP DONE - Period: 59.51
16:30:40:704 TRC ON
16:30:40:704 BT: Area(0, 0): 10501 is good. Gold-Area: 10568, Tol: 5
16:30:40:704 TRC DONE - Period: 1.74
16:30:40:704 Map: 0, Camera: 2, Center: (445.570, 440.507), Angle: 0.00, Perimeter: 399, Area: 10501, Pass: 1
16:30:40:704 ,1,445.570, 440.507,29350,
16:30:40:704 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:40:704 PROCESS is done
16:30:57:016 PROCESS_MSG(lParam: 1) is received
16:30:57:016 Not a newly created file. File name : 4f62094e-24863-7329
16:30:57:016 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:57:016 ###GetVisData():VideoFile is : 4f62094e-24863-7329
16:30:57:047 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62094e-24863-7329.VID
16:30:57:047 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62094e-24863-7329cogP.VID
16:30:57:063 SNAP ON (Camera 2)
16:30:57:110 SNAP DONE - Period: 47.11
16:30:57:110 TRC ON
16:30:57:125 BT: Area(0, 0): 15175 is good. Gold-Area: 15265, Tol: 5
16:30:57:125 TRC DONE - Period: 9.24
16:30:57:125 Map: 0, Camera: 2, Center: (506.343, 380.265), Angle: 0.00, Perimeter: 396, Area: 15175, Pass: 1
16:30:57:125 ,1,506.343, 380.265,29351,
16:30:57:125 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:57:125 PROCESS is done
16:30:58:641 PROCESS_MSG(lParam: 1) is received
16:30:58:641 Not a newly created file. File name : 4f62096d-248c8-88ba
16:30:58:641 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:30:58:641 ###GetVisData():VideoFile is : 4f62096d-248c8-88ba
16:30:58:704 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62096d-248c8-88ba.VID
16:30:58:704 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62096d-248c8-88bacogP.VID
16:30:58:704 SNAP ON (Camera 2)
16:30:58:750 SNAP DONE - Period: 46.10
16:30:58:766 TRC ON
16:30:58:766 BT: Area(0, 0): 15066 is good. Gold-Area: 15158, Tol: 5
16:30:58:766 TRC DONE - Period: 9.05
16:30:58:766 Map: 0, Camera: 2, Center: (505.346, 380.879), Angle: 0.00, Perimeter: 391, Area: 15066, Pass: 1
16:30:58:766 ,1,505.346, 380.879,29352,
16:30:58:797 HANDLE: 61998794, Msg: 34816, lParam: 0
16:30:58:797 PROCESS is done
16:31:00:344 PROCESS_MSG(lParam: 1) is received
16:31:00:344 Not a newly created file. File name : 4f6209d0-24a0b-4556
16:31:00:344 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:00:344 ###GetVisData():VideoFile is : 4f6209d0-24a0b-4556
16:31:00:375 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209d0-24a0b-4556.VID
16:31:00:375 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209d0-24a0b-4556cogP.VID
16:31:00:375 SNAP ON (Camera 2)
16:31:00:422 SNAP DONE - Period: 47.98
16:31:00:438 TRC ON
16:31: 0:438 BT: Area(0, 0): 8852 is good. Gold-Area: 8906, Tol: 5
16:31:00:438 TRC DONE - Period: 2.23
16:31:00:438 Map: 0, Camera: 2, Center: (510.366, 380.056), Angle: 0.00, Perimeter: 301, Area: 8852, Pass: 1
16:31:00:438 ,1,510.366, 380.056,29353,
16:31:00:438 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:00:438 PROCESS is done
16:31:01:938 PROCESS_MSG(lParam: 1) is received
16:31:01:938 Not a newly created file. File name : 4f6209ea-24a60-88f8
16:31:01:938 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:01:938 ###GetVisData():VideoFile is : 4f6209ea-24a60-88f8
16:31:01:985 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209ea-24a60-88f8.VID
16:31:01:985 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209ea-24a60-88f8cogP.VID
16:31:01:985 SNAP ON (Camera 2)
16:31:02:032 SNAP DONE - Period: 51.47
16:31:02:047 TRC ON
16:31: 2: 47 BT: Area(0, 0): 8606 is good. Gold-Area: 8709, Tol: 5
16:31:02:047 TRC DONE - Period: 2.27
16:31:02:047 Map: 0, Camera: 2, Center: (509.733, 379.764), Angle: 0.00, Perimeter: 298, Area: 8606, Pass: 1
16:31:02:047 ,1,509.733, 379.764,29354,
16:31:02:047 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:02:047 PROCESS is done
16:31:03:579 PROCESS_MSG(lParam: 1) is received
16:31:03:579 Not a newly created file. File name : 4f620a43-24b83-21b9
16:31:03:579 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:03:579 ###GetVisData():VideoFile is : 4f620a43-24b83-21b9
16:31:03:610 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a43-24b83-21b9.VID
16:31:03:610 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a43-24b83-21b9cogP.VID
16:31:03:610 SNAP ON (Camera 2)
16:31:03:688 SNAP DONE - Period: 70.68
16:31:03:688 TRC ON
16:31: 3:688 BT: Area(0, 0): 8085 is good. Gold-Area: 8229, Tol: 5
16:31:03:688 TRC DONE - Period: 2.21
16:31:03:688 Map: 0, Camera: 2, Center: (510.759, 381.209), Angle: 0.00, Perimeter: 291, Area: 8085, Pass: 1
16:31:03:688 ,1,510.759, 381.209,29355,
16:31:03:704 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:03:704 PROCESS is done
16:31:05:204 PROCESS_MSG(lParam: 1) is received
16:31:05:204 Not a newly created file. File name : 4f620a52-24bb4-1783
16:31:05:204 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:05:219 ###GetVisData():VideoFile is : 4f620a52-24bb4-1783
16:31:05:250 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a52-24bb4-1783.VID
16:31:05:250 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a52-24bb4-1783cogP.VID
16:31:05:250 SNAP ON (Camera 2)
16:31:05:297 SNAP DONE - Period: 47.13
16:31:05:297 TRC ON
16:31: 5:297 BT: Area(0, 0): 8098 is good. Gold-Area: 8258, Tol: 5
16:31:05:297 TRC DONE - Period: 2.30
16:31:05:313 Map: 0, Camera: 2, Center: (510.609, 381.459), Angle: 0.00, Perimeter: 299, Area: 8098, Pass: 1
16:31:05:313 ,1,510.609, 381.459,29356,
16:31:05:313 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:05:313 PROCESS is done
16:31:07:797 PROCESS_MSG(lParam: 1) is received
16:31:07:797 Not a newly created file. File name : 52f55cea-15ab2-36de
16:31:07:797 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:07:797 ###GetVisData():VideoFile is : 52f55cea-15ab2-36de
16:31:07:844 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55cea-15ab2-36de.VID
16:31:07:844 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55cea-15ab2-36decogP.VID
16:31:07:844 SNAP ON (Camera 1)
16:31:07:907 SNAP DONE - Period: 54.06
16:31:07:907 TRC ON
16:31:08:000 TRC DONE - Period: 96.56
16:31:08:000 Map: 0, Camera: 1, Center: (619.271, 274.248), Angle: -1.73, Perimeter: 847, Area: 0, Pass: 1
16:31:08:000 ,1,619.271, 274.248,29357,
16:31:08:016 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:08:016 PROCESS is done
16:31:09:532 PROCESS_MSG(lParam: 1) is received
16:31:09:532 Not a newly created file. File name : 52f55d11-15b32-1c52
16:31:09:532 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:09:532 ###GetVisData():VideoFile is : 52f55d11-15b32-1c52
16:31:09:563 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d11-15b32-1c52.VID
16:31:09:563 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d11-15b32-1c52cogP.VID
16:31:09:563 SNAP ON (Camera 1)
16:31:09:610 SNAP DONE - Period: 45.66
16:31:09:625 TRC ON
16:31:09:766 TRC DONE - Period: 140.17
16:31:09:766 Map: 0, Camera: 1, Center: (413.171, 493.119), Angle: -2.00, Perimeter: 734, Area: 0, Pass: 1
16:31:09:766 ,1,413.171, 493.119,29358,
16:31:09:766 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:09:766 PROCESS is done
16:31:16:532 CAMERA_MSG is received. CamerID: 3
16:31:16:563 SNAP ON (Camera 3)
16:31:16:641 SNAP DONE - Period: 71.38
16:31:16:641 CAMERA_SELECT is done
16:31:16:875 PROCESS_MSG(lParam: 1) is received
16:31:16:875 Not a newly created file. File name : 52f55d73-35c72-2ef2
16:31:16:875 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:16:875 ###GetVisData():VideoFile is : 52f55d73-35c72-2ef2
16:31:16:922 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d73-35c72-2ef2.VID
16:31:16:922 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d73-35c72-2ef2cogP.VID
16:31:16:922 SNAP ON (Camera 3)
16:31:16:985 SNAP DONE - Period: 53.67
16:31:16:985 TRC ON
16:31:16:985 BT: Area(0, 0): 4292 is good. Gold-Area: 4451, Tol: 5
16:31:16:985 TRC DONE - Period: 3.25
16:31:16:985 Map: 0, Camera: 3, Center: (510.521, 367.499), Angle: 0.00, Perimeter: 217, Area: 4292, Pass: 1
16:31:17:000 ,1,510.521, 367.499,29359,
16:31:17:000 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:17:000 PROCESS is done
16:31:18:235 CAMERA_MSG is received. CamerID: 3
16:31:18:282 SNAP ON (Camera 3)
16:31:18:344 SNAP DONE - Period: 76.23
16:31:18:360 CAMERA_SELECT is done
16:31:18:579 PROCESS_MSG(lParam: 1) is received
16:31:18:579 Not a newly created file. File name : 52f55da7-35d1b-3637
16:31:18:579 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:18:579 ###GetVisData():VideoFile is : 52f55da7-35d1b-3637
16:31:18:610 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55da7-35d1b-3637.VID
16:31:18:610 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55da7-35d1b-3637cogP.VID
16:31:18:610 SNAP ON (Camera 3)
16:31:18:688 SNAP DONE - Period: 77.18
16:31:18:704 TRC ON
16:31:18:704 BT: Area(0, 0): 4446 is good. Gold-Area: 4623, Tol: 5
16:31:18:704 TRC DONE - Period: 3.59
16:31:18:704 Map: 0, Camera: 3, Center: (510.347, 364.395), Angle: 0.00, Perimeter: 218, Area: 4446, Pass: 1
16:31:18:704 ,1,510.347, 364.395,29360,
16:31:18:704 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:18:704 PROCESS is done
16:31:54:266 PLACEMENT_MSG is received
16:31:54:297 Not a newly created file. File name : VisDataInMap
16:31:54:313 SNAP ON (Camera 1)
16:31:54:375 SNAP DONE - Period: 61.65
16:31:54:375 Before Applying Rotation : X: 512.0, Y: 384.0, Orientation: -358.70
16:31:54:375 Center.X :512,Center.Y:384, Angle :-6.2606,Shape:0
16:31:54:375 Inner Diameter :0.0700,Outer Diameter:0.1000, Camera Mag X :0.0047,Camera Mag Y:0.0047
16:31:54:375 m_nOverlayIDPix[0] :14,m_nOverlayIDPix[1]:14, m_nOverlayODPix[0] :21,m_nOverlayODPix[1]:21
16:31:54:375 PLACEMENT is done
16:31:54:391 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:55:954 PROCESS_MSG(lParam: 1) is received
16:31:55:954 Not a newly created file. File name : 4f620baa-25017-82af
16:31:55:954 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:55:954 ###GetVisData():VideoFile is : 4f620baa-25017-82af
16:31:56:000 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620baa-25017-82af.VID
16:31:56:000 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620baa-25017-82afcogP.VID
16:31:56:000 SNAP ON (Camera 2)
16:31:56:047 SNAP DONE - Period: 45.05
16:31:56:063 TRC ON
16:31:56: 63 BT: Area(0, 0): 8800 is good. Gold-Area: 8757, Tol: 5
16:31:56:063 TRC DONE - Period: 8.94
16:31:56:063 Map: 0, Camera: 2, Center: (505.275, 380.107), Angle: 0.00, Perimeter: 303, Area: 8800, Pass: 1
16:31:56:063 ,1,505.275, 380.107,29361,
16:31:56:063 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:56:063 PROCESS is done
16:31:57:610 PROCESS_MSG(lParam: 1) is received
16:31:57:610 Not a newly created file. File name : 4f620bc3-25069-1c55
16:31:57:610 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:57:610 ###GetVisData():VideoFile is : 4f620bc3-25069-1c55
16:31:57:641 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620bc3-25069-1c55.VID
16:31:57:641 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620bc3-25069-1c55cogP.VID
16:31:57:641 SNAP ON (Camera 2)
16:31:57:688 SNAP DONE - Period: 52.01
16:31:57:704 TRC ON
16:31:57:704 BT: Area(0, 0): 8718 is good. Gold-Area: 8720, Tol: 5
16:31:57:719 TRC DONE - Period: 8.77
16:31:57:719 Map: 0, Camera: 2, Center: (502.316, 377.797), Angle: 0.00, Perimeter: 305, Area: 8718, Pass: 1
16:31:57:719 ,1,502.316, 377.797,29362,
16:31:57:719 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:57:719 PROCESS is done
16:31:59:250 PROCESS_MSG(lParam: 1) is received
16:31:59:250 Not a newly created file. File name : 4f620c3c-251f4-74a2
16:31:59:250 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:31:59:250 ###GetVisData():VideoFile is : 4f620c3c-251f4-74a2
16:31:59:282 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c3c-251f4-74a2.VID
16:31:59:282 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c3c-251f4-74a2cogP.VID
16:31:59:282 SNAP ON (Camera 2)
16:31:59:344 SNAP DONE - Period: 48.24
16:31:59:344 TRC ON
16:31:59:360 BT: Area(18, 0): 8289 is good. Gold-Area: 8576, Tol: 5
16:31:59:360 TRC DONE - Period: 16.90
16:31:59:360 Map: 0, Camera: 2, Center: (528.145, 381.145), Angle: 0.00, Perimeter: 304, Area: 8289, Pass: 1
16:31:59:360 ,1,528.145, 381.145,29363,
16:31:59:360 HANDLE: 61998794, Msg: 34816, lParam: 0
16:31:59:360 PROCESS is done
16:32:00:891 PROCESS_MSG(lParam: 1) is received
16:32:00:891 Not a newly created file. File name : 4f620c5c-2525c-342f
16:32:00:891 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:00:891 ###GetVisData():VideoFile is : 4f620c5c-2525c-342f
16:32:00:922 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c5c-2525c-342f.VID
16:32:00:922 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c5c-2525c-342fcogP.VID
16:32:00:922 SNAP ON (Camera 2)
16:32:00:985 SNAP DONE - Period: 51.42
16:32:00:985 TRC ON
16:32: 1: 0 BT: Area(18, 0): 8187 is good. Gold-Area: 8565, Tol: 5
16:32:01:000 TRC DONE - Period: 15.98
16:32:01:000 Map: 0, Camera: 2, Center: (528.516, 377.196), Angle: 0.00, Perimeter: 324, Area: 8187, Pass: 1
16:32:01:000 ,1,528.516, 377.196,29364,
16:32:01:016 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:01:016 PROCESS is done
16:32:02:563 PROCESS_MSG(lParam: 1) is received
16:32:02:563 Not a newly created file. File name : 4fa2a86a-24f38-51a2
16:32:02:563 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:02:563 ###GetVisData():VideoFile is : 4fa2a86a-24f38-51a2
16:32:02:610 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a86a-24f38-51a2.VID
16:32:02:610 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a86a-24f38-51a2cogP.VID
16:32:02:610 SNAP ON (Camera 2)
16:32:02:657 SNAP DONE - Period: 49.90
16:32:02:672 TRC ON
16:32: 2:672 BT: Area(0, 0): 8728 is good. Gold-Area: 8708, Tol: 5
16:32:02:672 TRC DONE - Period: 1.64
16:32:02:672 Map: 0, Camera: 2, Center: (545.658, 328.775), Angle: 0.00, Perimeter: 301, Area: 8728, Pass: 1
16:32:02:672 ,1,545.658, 328.775,29365,
16:32:02:672 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:02:672 PROCESS is done
16:32:04:204 PROCESS_MSG(lParam: 1) is received
16:32:04:204 Not a newly created file. File name : 4fa2a880-24f80-6d53
16:32:04:204 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:04:204 ###GetVisData():VideoFile is : 4fa2a880-24f80-6d53
16:32:04:250 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a880-24f80-6d53.VID
16:32:04:250 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a880-24f80-6d53cogP.VID
16:32:04:250 SNAP ON (Camera 2)
16:32:04:313 SNAP DONE - Period: 55.11
16:32:04:313 TRC ON
16:32: 4:313 BT: Area(0, 0): 5114 is good. Gold-Area: 5086, Tol: 5
16:32:04:313 TRC DONE - Period: 1.67
16:32:04:313 Map: 0, Camera: 2, Center: (476.800, 431.265), Angle: 0.00, Perimeter: 233, Area: 5114, Pass: 1
16:32:04:313 ,1,476.800, 431.265,29366,
16:32:04:313 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:04:313 PROCESS is done
16:32:05:844 PROCESS_MSG(lParam: 1) is received
16:32:05:844 Not a newly created file. File name : 4fa2a8a4-24ff6-54d2
16:32:05:844 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:05:844 ###GetVisData():VideoFile is : 4fa2a8a4-24ff6-54d2
16:32:05:875 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8a4-24ff6-54d2.VID
16:32:05:875 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8a4-24ff6-54d2cogP.VID
16:32:05:875 SNAP ON (Camera 2)
16:32:05:954 SNAP DONE - Period: 75.38
16:32:05:954 TRC ON
16:32: 5:954 BT: Area(0, 0): 7925 is good. Gold-Area: 8002, Tol: 5
16:32:05:954 TRC DONE - Period: 1.68
16:32:05:954 Map: 0, Camera: 2, Center: (549.302, 336.856), Angle: 0.00, Perimeter: 294, Area: 7925, Pass: 1
16:32:05:954 ,1,549.302, 336.856,29367,
16:32:05:969 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:05:969 PROCESS is done
16:32:07:485 PROCESS_MSG(lParam: 1) is received
16:32:07:485 Not a newly created file. File name : 4fa2a8b6-25030-4891
16:32:07:485 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:07:485 ###GetVisData():VideoFile is : 4fa2a8b6-25030-4891
16:32:07:516 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8b6-25030-4891.VID
16:32:07:516 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8b6-25030-4891cogP.VID
16:32:07:516 SNAP ON (Camera 2)
16:32:07:563 SNAP DONE - Period: 46.46
16:32:07:563 TRC ON
16:32: 7:579 BT: Area(0, 0): 10502 is good. Gold-Area: 10568, Tol: 5
16:32:07:579 TRC DONE - Period: 1.81
16:32:07:579 Map: 0, Camera: 2, Center: (445.512, 440.635), Angle: 0.00, Perimeter: 395, Area: 10502, Pass: 1
16:32:07:579 ,1,445.512, 440.635,29368,
16:32:07:579 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:07:579 PROCESS is done
16:32:23:844 PROCESS_MSG(lParam: 1) is received
16:32:23:844 Not a newly created file. File name : 4f62094e-24863-7329
16:32:23:844 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:23:844 ###GetVisData():VideoFile is : 4f62094e-24863-7329
16:32:23:891 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62094e-24863-7329.VID
16:32:23:891 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62094e-24863-7329cogP.VID
16:32:23:891 SNAP ON (Camera 2)
16:32:23:938 SNAP DONE - Period: 45.97
16:32:23:954 TRC ON
16:32:23:954 BT: Area(0, 0): 15183 is good. Gold-Area: 15265, Tol: 5
16:32:23:954 TRC DONE - Period: 8.98
16:32:23:969 Map: 0, Camera: 2, Center: (506.476, 380.265), Angle: 0.00, Perimeter: 395, Area: 15183, Pass: 1
16:32:23:969 ,1,506.476, 380.265,29369,
16:32:23:969 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:23:969 PROCESS is done
16:32:25:469 PROCESS_MSG(lParam: 1) is received
16:32:25:469 Not a newly created file. File name : 4f62096d-248c8-88ba
16:32:25:469 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:25:469 ###GetVisData():VideoFile is : 4f62096d-248c8-88ba
16:32:25:500 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62096d-248c8-88ba.VID
16:32:25:500 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62096d-248c8-88bacogP.VID
16:32:25:500 SNAP ON (Camera 2)
16:32:25:547 SNAP DONE - Period: 49.35
16:32:25:563 TRC ON
16:32:25:563 BT: Area(0, 0): 15077 is good. Gold-Area: 15158, Tol: 5
16:32:25:579 TRC DONE - Period: 8.75
16:32:25:579 Map: 0, Camera: 2, Center: (505.259, 380.991), Angle: 0.00, Perimeter: 395, Area: 15077, Pass: 1
16:32:25:579 ,1,505.259, 380.991,29370,
16:32:25:579 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:25:579 PROCESS is done
16:32:27:141 PROCESS_MSG(lParam: 1) is received
16:32:27:141 Not a newly created file. File name : 4f6209d0-24a0b-4556
16:32:27:141 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:27:141 ###GetVisData():VideoFile is : 4f6209d0-24a0b-4556
16:32:27:188 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209d0-24a0b-4556.VID
16:32:27:188 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209d0-24a0b-4556cogP.VID
16:32:27:188 SNAP ON (Camera 2)
16:32:27:266 SNAP DONE - Period: 72.14
16:32:27:282 TRC ON
16:32:27:282 BT: Area(0, 0): 8854 is good. Gold-Area: 8906, Tol: 5
16:32:27:282 TRC DONE - Period: 2.41
16:32:27:282 Map: 0, Camera: 2, Center: (510.542, 379.989), Angle: 0.00, Perimeter: 304, Area: 8854, Pass: 1
16:32:27:282 ,1,510.542, 379.989,29371,
16:32:27:282 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:27:282 PROCESS is done
16:32:28:797 PROCESS_MSG(lParam: 1) is received
16:32:28:797 Not a newly created file. File name : 4f6209ea-24a60-88f8
16:32:28:797 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:28:797 ###GetVisData():VideoFile is : 4f6209ea-24a60-88f8
16:32:28:844 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209ea-24a60-88f8.VID
16:32:28:844 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209ea-24a60-88f8cogP.VID
16:32:28:844 SNAP ON (Camera 2)
16:32:28:907 SNAP DONE - Period: 67.75
16:32:28:922 TRC ON
16:32:28:922 BT: Area(0, 0): 8601 is good. Gold-Area: 8709, Tol: 5
16:32:28:922 TRC DONE - Period: 2.47
16:32:28:922 Map: 0, Camera: 2, Center: (509.767, 379.663), Angle: 0.00, Perimeter: 300, Area: 8601, Pass: 1
16:32:28:922 ,1,509.767, 379.663,29372,
16:32:28:922 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:28:922 PROCESS is done
16:32:30:454 PROCESS_MSG(lParam: 1) is received
16:32:30:454 Not a newly created file. File name : 4f620a43-24b83-21b9
16:32:30:469 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:30:469 ###GetVisData():VideoFile is : 4f620a43-24b83-21b9
16:32:30:485 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a43-24b83-21b9.VID
16:32:30:485 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a43-24b83-21b9cogP.VID
16:32:30:485 SNAP ON (Camera 2)
16:32:30:563 SNAP DONE - Period: 64.72
16:32:30:563 TRC ON
16:32:30:563 BT: Area(0, 0): 8099 is good. Gold-Area: 8229, Tol: 5
16:32:30:563 TRC DONE - Period: 2.24
16:32:30:563 Map: 0, Camera: 2, Center: (510.706, 381.255), Angle: 0.00, Perimeter: 293, Area: 8099, Pass: 1
16:32:30:563 ,1,510.706, 381.255,29373,
16:32:30:563 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:30:563 PROCESS is done
16:32:32:094 PROCESS_MSG(lParam: 1) is received
16:32:32:094 Not a newly created file. File name : 4f620a52-24bb4-1783
16:32:32:094 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:32:094 ###GetVisData():VideoFile is : 4f620a52-24bb4-1783
16:32:32:141 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a52-24bb4-1783.VID
16:32:32:141 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620a52-24bb4-1783cogP.VID
16:32:32:141 SNAP ON (Camera 2)
16:32:32:204 SNAP DONE - Period: 61.20
16:32:32:204 TRC ON
16:32:32:204 BT: Area(0, 0): 8104 is good. Gold-Area: 8258, Tol: 5
16:32:32:204 TRC DONE - Period: 2.25
16:32:32:219 Map: 0, Camera: 2, Center: (510.547, 381.491), Angle: 0.00, Perimeter: 298, Area: 8104, Pass: 1
16:32:32:219 ,1,510.547, 381.491,29374,
16:32:32:219 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:32:219 PROCESS is done
16:32:34:704 PROCESS_MSG(lParam: 1) is received
16:32:34:704 Not a newly created file. File name : 52f55cea-15ab2-36de
16:32:34:704 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:34:704 ###GetVisData():VideoFile is : 52f55cea-15ab2-36de
16:32:34:750 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55cea-15ab2-36de.VID
16:32:34:750 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55cea-15ab2-36decogP.VID
16:32:34:750 SNAP ON (Camera 1)
16:32:34:813 SNAP DONE - Period: 58.76
16:32:34:813 TRC ON
16:32:34:907 TRC DONE - Period: 84.31
16:32:34:907 Map: 0, Camera: 1, Center: (618.972, 274.100), Angle: -1.73, Perimeter: 847, Area: 0, Pass: 1
16:32:34:907 ,1,618.972, 274.100,29375,
16:32:34:907 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:34:907 PROCESS is done
16:32:36:422 PROCESS_MSG(lParam: 1) is received
16:32:36:422 Not a newly created file. File name : 52f55d11-15b32-1c52
16:32:36:422 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:36:422 ###GetVisData():VideoFile is : 52f55d11-15b32-1c52
16:32:36:454 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d11-15b32-1c52.VID
16:32:36:454 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d11-15b32-1c52cogP.VID
16:32:36:454 SNAP ON (Camera 1)
16:32:36:516 SNAP DONE - Period: 58.68
16:32:36:532 TRC ON
16:32:36:610 TRC DONE - Period: 83.98
16:32:36:610 Map: 0, Camera: 1, Center: (413.181, 493.161), Angle: -2.00, Perimeter: 734, Area: 0, Pass: 1
16:32:36:610 ,1,413.181, 493.161,29376,
16:32:36:610 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:36:610 PROCESS is done
16:32:43:407 CAMERA_MSG is received. CamerID: 3
16:32:43:438 SNAP ON (Camera 3)
16:32:43:516 SNAP DONE - Period: 76.10
16:32:43:516 CAMERA_SELECT is done
16:32:43:750 PROCESS_MSG(lParam: 1) is received
16:32:43:750 Not a newly created file. File name : 52f55d73-35c72-2ef2
16:32:43:750 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:43:750 ###GetVisData():VideoFile is : 52f55d73-35c72-2ef2
16:32:43:797 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d73-35c72-2ef2.VID
16:32:43:797 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55d73-35c72-2ef2cogP.VID
16:32:43:797 SNAP ON (Camera 3)
16:32:43:844 SNAP DONE - Period: 51.54
16:32:43:860 TRC ON
16:32:43:860 BT: Area(0, 0): 4299 is good. Gold-Area: 4451, Tol: 5
16:32:43:860 TRC DONE - Period: 3.46
16:32:43:860 Map: 0, Camera: 3, Center: (511.188, 367.872), Angle: 0.00, Perimeter: 214, Area: 4299, Pass: 1
16:32:43:860 ,1,511.188, 367.872,29377,
16:32:43:860 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:43:860 PROCESS is done
16:32:45:125 CAMERA_MSG is received. CamerID: 3
16:32:45:157 SNAP ON (Camera 3)
16:32:45:219 SNAP DONE - Period: 73.55
16:32:45:235 CAMERA_SELECT is done
16:32:45:469 PROCESS_MSG(lParam: 1) is received
16:32:45:469 Not a newly created file. File name : 52f55da7-35d1b-3637
16:32:45:469 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:32:45:469 ###GetVisData():VideoFile is : 52f55da7-35d1b-3637
16:32:45:500 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55da7-35d1b-3637.VID
16:32:45:500 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\52f55da7-35d1b-3637cogP.VID
16:32:45:500 SNAP ON (Camera 3)
16:32:45:563 SNAP DONE - Period: 59.41
16:32:45:579 TRC ON
16:32:45:579 BT: Area(0, 0): 4464 is good. Gold-Area: 4623, Tol: 5
16:32:45:579 TRC DONE - Period: 3.59
16:32:45:579 Map: 0, Camera: 3, Center: (510.956, 364.164), Angle: 0.00, Perimeter: 216, Area: 4464, Pass: 1
16:32:45:579 ,1,510.956, 364.164,29378,
16:32:45:579 HANDLE: 61998794, Msg: 34816, lParam: 0
16:32:45:579 PROCESS is done
16:33:21:125 PLACEMENT_MSG is received
16:33:21:157 Not a newly created file. File name : VisDataInMap
16:33:21:157 SNAP ON (Camera 1)
16:33:21:204 SNAP DONE - Period: 43.94
16:33:21:219 Before Applying Rotation : X: 512.0, Y: 384.0, Orientation: -358.70
16:33:21:219 Center.X :512,Center.Y:384, Angle :-6.2606,Shape:0
16:33:21:219 Inner Diameter :0.0700,Outer Diameter:0.1000, Camera Mag X :0.0047,Camera Mag Y:0.0047
16:33:21:219 m_nOverlayIDPix[0] :14,m_nOverlayIDPix[1]:14, m_nOverlayODPix[0] :21,m_nOverlayODPix[1]:21
16:33:21:219 PLACEMENT is done
16:33:21:219 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:22:782 PROCESS_MSG(lParam: 1) is received
16:33:22:782 Not a newly created file. File name : 4f620baa-25017-82af
16:33:22:782 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:22:782 ###GetVisData():VideoFile is : 4f620baa-25017-82af
16:33:22:813 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620baa-25017-82af.VID
16:33:22:813 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620baa-25017-82afcogP.VID
16:33:22:813 SNAP ON (Camera 2)
16:33:22:891 SNAP DONE - Period: 74.05
16:33:22:891 TRC ON
16:33:22:907 BT: Area(0, 0): 8811 is good. Gold-Area: 8757, Tol: 5
16:33:22:907 TRC DONE - Period: 9.10
16:33:22:907 Map: 0, Camera: 2, Center: (505.419, 380.198), Angle: 0.00, Perimeter: 302, Area: 8811, Pass: 1
16:33:22:907 ,1,505.419, 380.198,29379,
16:33:22:907 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:22:907 PROCESS is done
16:33:24:422 PROCESS_MSG(lParam: 1) is received
16:33:24:422 Not a newly created file. File name : 4f620bc3-25069-1c55
16:33:24:422 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:24:422 ###GetVisData():VideoFile is : 4f620bc3-25069-1c55
16:33:24:454 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620bc3-25069-1c55.VID
16:33:24:454 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620bc3-25069-1c55cogP.VID
16:33:24:454 SNAP ON (Camera 2)
16:33:24:532 SNAP DONE - Period: 70.25
16:33:24:532 TRC ON
16:33:24:547 BT: Area(0, 0): 8731 is good. Gold-Area: 8720, Tol: 5
16:33:24:547 TRC DONE - Period: 9.46
16:33:24:547 Map: 0, Camera: 2, Center: (502.270, 377.768), Angle: 0.00, Perimeter: 307, Area: 8731, Pass: 1
16:33:24:547 ,1,502.270, 377.768,29380,
16:33:24:547 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:24:547 PROCESS is done
16:33:26:094 PROCESS_MSG(lParam: 1) is received
16:33:26:094 Not a newly created file. File name : 4f620c3c-251f4-74a2
16:33:26:094 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:26:094 ###GetVisData():VideoFile is : 4f620c3c-251f4-74a2
16:33:26:125 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c3c-251f4-74a2.VID
16:33:26:125 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c3c-251f4-74a2cogP.VID
16:33:26:125 SNAP ON (Camera 2)
16:33:26:172 SNAP DONE - Period: 49.81
16:33:26:188 TRC ON
16:33:26:204 BT: Area(18, 0): 8311 is good. Gold-Area: 8576, Tol: 5
16:33:26:204 TRC DONE - Period: 15.30
16:33:26:204 Map: 0, Camera: 2, Center: (528.381, 380.571), Angle: 0.00, Perimeter: 303, Area: 8311, Pass: 1
16:33:26:204 ,1,528.381, 380.571,29381,
16:33:26:204 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:26:204 PROCESS is done
16:33:27:719 PROCESS_MSG(lParam: 1) is received
16:33:27:719 Not a newly created file. File name : 4f620c5c-2525c-342f
16:33:27:719 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:27:719 ###GetVisData():VideoFile is : 4f620c5c-2525c-342f
16:33:27:750 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c5c-2525c-342f.VID
16:33:27:750 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f620c5c-2525c-342fcogP.VID
16:33:27:750 SNAP ON (Camera 2)
16:33:27:813 SNAP DONE - Period: 72.53
16:33:27:829 TRC ON
16:33:27:844 BT: Area(18, 0): 8188 is good. Gold-Area: 8565, Tol: 5
16:33:27:844 TRC DONE - Period: 16.10
16:33:27:844 Map: 0, Camera: 2, Center: (528.909, 377.632), Angle: 0.00, Perimeter: 321, Area: 8188, Pass: 1
16:33:27:844 ,1,528.909, 377.632,29382,
16:33:27:844 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:27:844 PROCESS is done
16:33:29:407 PROCESS_MSG(lParam: 1) is received
16:33:29:407 Not a newly created file. File name : 4fa2a86a-24f38-51a2
16:33:29:407 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:29:407 ###GetVisData():VideoFile is : 4fa2a86a-24f38-51a2
16:33:29:438 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a86a-24f38-51a2.VID
16:33:29:438 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a86a-24f38-51a2cogP.VID
16:33:29:438 SNAP ON (Camera 2)
16:33:29:500 SNAP DONE - Period: 60.98
16:33:29:500 TRC ON
16:33:29:500 BT: Area(0, 0): 8718 is good. Gold-Area: 8708, Tol: 5
16:33:29:500 TRC DONE - Period: 1.64
16:33:29:516 Map: 0, Camera: 2, Center: (546.047, 328.396), Angle: 0.00, Perimeter: 300, Area: 8718, Pass: 1
16:33:29:516 ,1,546.047, 328.396,29383,
16:33:29:516 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:29:516 PROCESS is done
16:33:31:016 PROCESS_MSG(lParam: 1) is received
16:33:31:016 Not a newly created file. File name : 4fa2a880-24f80-6d53
16:33:31:016 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:31:016 ###GetVisData():VideoFile is : 4fa2a880-24f80-6d53
16:33:31:063 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a880-24f80-6d53.VID
16:33:31:063 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a880-24f80-6d53cogP.VID
16:33:31:063 SNAP ON (Camera 2)
16:33:31:141 SNAP DONE - Period: 76.75
16:33:31:157 TRC ON
16:33:31:157 BT: Area(0, 0): 5111 is good. Gold-Area: 5086, Tol: 5
16:33:31:157 TRC DONE - Period: 1.51
16:33:31:157 Map: 0, Camera: 2, Center: (476.699, 431.170), Angle: 0.00, Perimeter: 234, Area: 5111, Pass: 1
16:33:31:157 ,1,476.699, 431.170,29384,
16:33:31:157 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:31:157 PROCESS is done
16:33:32:672 PROCESS_MSG(lParam: 1) is received
16:33:32:672 Not a newly created file. File name : 4fa2a8a4-24ff6-54d2
16:33:32:672 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:32:672 ###GetVisData():VideoFile is : 4fa2a8a4-24ff6-54d2
16:33:32:719 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8a4-24ff6-54d2.VID
16:33:32:719 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8a4-24ff6-54d2cogP.VID
16:33:32:719 SNAP ON (Camera 2)
16:33:32:782 SNAP DONE - Period: 64.18
16:33:32:797 TRC ON
16:33:32:797 BT: Area(0, 0): 7919 is good. Gold-Area: 8002, Tol: 5
16:33:32:797 TRC DONE - Period: 1.77
16:33:32:797 Map: 0, Camera: 2, Center: (549.786, 336.928), Angle: 0.00, Perimeter: 298, Area: 7919, Pass: 1
16:33:32:797 ,1,549.786, 336.928,29385,
16:33:32:797 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:32:797 PROCESS is done
16:33:34:329 PROCESS_MSG(lParam: 1) is received
16:33:34:329 Not a newly created file. File name : 4fa2a8b6-25030-4891
16:33:34:329 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:34:329 ###GetVisData():VideoFile is : 4fa2a8b6-25030-4891
16:33:34:360 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8b6-25030-4891.VID
16:33:34:360 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4fa2a8b6-25030-4891cogP.VID
16:33:34:360 SNAP ON (Camera 2)
16:33:34:438 SNAP DONE - Period: 67.42
16:33:34:438 TRC ON
16:33:34:438 BT: Area(0, 0): 10498 is good. Gold-Area: 10568, Tol: 5
16:33:34:438 TRC DONE - Period: 1.96
16:33:34:438 Map: 0, Camera: 2, Center: (445.661, 440.500), Angle: 0.00, Perimeter: 396, Area: 10498, Pass: 1
16:33:34:438 ,1,445.661, 440.500,29386,
16:33:34:438 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:34:438 PROCESS is done
16:33:50:766 PROCESS_MSG(lParam: 1) is received
16:33:50:766 Not a newly created file. File name : 4f62094e-24863-7329
16:33:50:766 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:50:766 ###GetVisData():VideoFile is : 4f62094e-24863-7329
16:33:50:813 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62094e-24863-7329.VID
16:33:50:813 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62094e-24863-7329cogP.VID
16:33:50:813 SNAP ON (Camera 2)
16:33:50:875 SNAP DONE - Period: 67.63
16:33:50:891 TRC ON
16:33:50:907 BT: Area(0, 0): 15175 is good. Gold-Area: 15265, Tol: 5
16:33:50:907 TRC DONE - Period: 8.99
16:33:50:907 Map: 0, Camera: 2, Center: (506.457, 380.407), Angle: 0.00, Perimeter: 394, Area: 15175, Pass: 1
16:33:50:907 ,1,506.457, 380.407,29387,
16:33:50:907 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:50:907 PROCESS is done
16:33:52:407 PROCESS_MSG(lParam: 1) is received
16:33:52:407 Not a newly created file. File name : 4f62096d-248c8-88ba
16:33:52:407 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:52:407 ###GetVisData():VideoFile is : 4f62096d-248c8-88ba
16:33:52:438 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62096d-248c8-88ba.VID
16:33:52:438 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f62096d-248c8-88bacogP.VID
16:33:52:438 SNAP ON (Camera 2)
16:33:52:485 SNAP DONE - Period: 52.03
16:33:52:500 TRC ON
16:33:52:516 BT: Area(0, 0): 15062 is good. Gold-Area: 15158, Tol: 5
16:33:52:516 TRC DONE - Period: 8.81
16:33:52:516 Map: 0, Camera: 2, Center: (505.327, 380.697), Angle: 0.00, Perimeter: 395, Area: 15062, Pass: 1
16:33:52:516 ,1,505.327, 380.697,29388,
16:33:52:532 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:52:532 PROCESS is done
16:33:54:079 PROCESS_MSG(lParam: 1) is received
16:33:54:079 Not a newly created file. File name : 4f6209d0-24a0b-4556
16:33:54:079 ###GetVisData():User directory is : C:\Users\PCB_LENS_Device
16:33:54:079 ###GetVisData():VideoFile is : 4f6209d0-24a0b-4556
16:33:54:125 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209d0-24a0b-4556.VID
16:33:54:125 Loading VisionData from file C:\Users\PCB_LENS_Device\VIDEO\4f6209d0-24a0b-4556cogP.VID
16:33:54:125 SNAP ON (Camera 2)
16:33:54:204 SNAP DONE - Period: 75.69
16:33:54:219 TRC ON
16:33:54:219 BT: Area(0, 0): 8850 is good. Gold-Area: 8906, Tol: 5
16:33:54:219 TRC DONE - Period: 2.39
16:33:54:219 Map: 0, Camera: 2, Center: (510.493, 379.733), Angle: 0.00, Perimeter: 300, Area: 8850, Pass: 1
16:33:54:219 ,1,510.493, 379.733,29389,
16:33:54:219 HANDLE: 61998794, Msg: 34816, lParam: 0
16:33:54:219 PROCESS is done
16:33:55:735 PROCESS_MSG(lParam: 1) is received