-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputCam1.log
executable file
·1295 lines (1286 loc) · 42.4 KB
/
outputCam1.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
golfcart2@golfcart2-DS-1200:~/CamSync/SoftTrigger$ python3 HardTriggerChunk1.py
Library version: 3.0.0.118
Number of cameras detected: 4
*** DEVICE INFORMATION ***
DeviceID: 00B09D1393EE_C3A8C865_FFFFFF00_C3A8C801
DeviceSerialNumber: 18060270
DeviceUserID:
DeviceVendorName: Point Grey Research
DeviceModelName: Blackfly BFLY-PGE-20E4C
DeviceVersion: FW:v1.43.3.01 FPGA:v2.02
DeviceBootloaderVersion: Node not readable
DeviceType: GigEVision
DeviceDisplayName: Point Grey Research
DeviceAccessStatus: OpenReadOnly
DeviceLinkSpeed: 1000
DeviceDriverVersion: none : 0.0.0.0
DeviceIsUpdater: 0
GenICamXMLLocation: Device
GenICamXMLPath:
GUIXMLLocation: Device
GUIXMLPath: Input.xml
GevCCP: OpenAccess
GevDeviceMACAddress: 0xb09d1393ee
GevDeviceIPAddress: 0xc3a8c865
GevDeviceSubnetMask: 0xffffff00
GevDeviceGateway: 0xc3a8c801
GevVersionMajor: 1
GevVersionMinor: 2
GevDeviceModeIsBigEndian: 0
GevDeviceReadAndWriteTimeout: 100000
GevDeviceMaximumRetryCount: 3
GevDevicePort: 0
GevDeviceDiscoverMaximumPacketSize: Node not readable
GevDeviceMaximumPacketSize: 576
GevDeviceIsWrongSubnet: 0
GevDeviceAutoForceIP: 0
GevDeviceForceIP: 0
GevDeviceForceIPAddress: 0
GevDeviceForceSubnetMask: 0
GevDeviceForceGateway: 0
*** CONFIGURING TRIGGER ***
Note that if the application / user software triggers faster than frame time, the trigger may be dropped / skipped by the camera.
If several frames are needed per trigger, a more reliable alternative for such case, is to use the multi-frame mode.
Hardware trigger chose ...
Trigger mode disabled...
Trigger selector set to frame start...
Trigger source set to hardware...
Trigger mode turned back on...
*** CONFIGURING CHUNK DATA ***
Chunk mode activated...
Enabling entries...
CRC: enabled
FrameCounter: enabled
OffsetX: enabled
OffsetY: enabled
Width: enabled
Height: enabled
ExposureTime: enabled
Gain: enabled
BlackLevel: enabled
PixelFormat: enabled
DynamicPixelRangeMin: enabled
DynamicPixelRangeMax: enabled
Timestamp: enabled
*** IMAGE ACQUISITION ***
Acquisition mode set to continuous...
Acquiring images...
Device serial number retrieved as 18060270...
Use the hardware to trigger image acquisition.
Grabbed Image 0, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 68985864781
2023-01-20 17:37:35.010870
Use the hardware to trigger image acquisition.
Grabbed Image 1, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 68998435770
2023-01-20 17:37:35.073184
Use the hardware to trigger image acquisition.
Grabbed Image 2, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69010099075
2023-01-20 17:37:35.164320
Use the hardware to trigger image acquisition.
Grabbed Image 3, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69022581197
2023-01-20 17:37:35.264127
Use the hardware to trigger image acquisition.
Grabbed Image 4, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69035689798
2023-01-20 17:37:35.368539
Use the hardware to trigger image acquisition.
Grabbed Image 5, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69048614690
2023-01-20 17:37:35.471994
Use the hardware to trigger image acquisition.
Grabbed Image 6, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69060675750
2023-01-20 17:37:35.599813
Use the hardware to trigger image acquisition.
Grabbed Image 7, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69073279932
2023-01-20 17:37:35.698614
Use the hardware to trigger image acquisition.
Grabbed Image 8, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69085944010
2023-01-20 17:37:35.797468
Use the hardware to trigger image acquisition.
Grabbed Image 9, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69098392634
2023-01-20 17:37:35.898125
Use the hardware to trigger image acquisition.
Grabbed Image 10, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69110964121
2023-01-20 17:37:35.971150
Use the hardware to trigger image acquisition.
Grabbed Image 11, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69123576476
2023-01-20 17:37:36.101984
Use the hardware to trigger image acquisition.
Grabbed Image 12, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69136150960
2023-01-20 17:37:36.172486
Use the hardware to trigger image acquisition.
Grabbed Image 13, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69148749099
2023-01-20 17:37:36.274176
Use the hardware to trigger image acquisition.
Grabbed Image 14, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69161365178
2023-01-20 17:37:36.374160
Use the hardware to trigger image acquisition.
Grabbed Image 15, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69173938578
2023-01-20 17:37:36.474964
Use the hardware to trigger image acquisition.
Grabbed Image 16, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69186490000
2023-01-20 17:37:36.575317
Use the hardware to trigger image acquisition.
Grabbed Image 17, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69199069635
2023-01-20 17:37:36.677246
Use the hardware to trigger image acquisition.
Grabbed Image 18, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69211638814
2023-01-20 17:37:36.804377
Use the hardware to trigger image acquisition.
Grabbed Image 19, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69224158421
2023-01-20 17:37:36.876254
Use the hardware to trigger image acquisition.
Grabbed Image 20, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69236698816
2023-01-20 17:37:36.976874
Use the hardware to trigger image acquisition.
Grabbed Image 21, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69249255020
2023-01-20 17:37:37.077264
Use the hardware to trigger image acquisition.
Grabbed Image 22, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69261795557
2023-01-20 17:37:37.177608
Use the hardware to trigger image acquisition.
Grabbed Image 23, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69274333414
2023-01-20 17:37:37.277499
Use the hardware to trigger image acquisition.
Grabbed Image 24, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69286885299
2023-01-20 17:37:37.378295
Use the hardware to trigger image acquisition.
Grabbed Image 25, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69299445531
2023-01-20 17:37:37.498843
Use the hardware to trigger image acquisition.
Grabbed Image 26, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69312027663
2023-01-20 17:37:37.602760
Use the hardware to trigger image acquisition.
Grabbed Image 27, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69324593266
2023-01-20 17:37:37.708546
Use the hardware to trigger image acquisition.
Grabbed Image 28, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69337193613
2023-01-20 17:37:37.802003
Use the hardware to trigger image acquisition.
Grabbed Image 29, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69349802551
2023-01-20 17:37:37.889630
Use the hardware to trigger image acquisition.
Grabbed Image 30, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69362417093
2023-01-20 17:37:37.982231
Use the hardware to trigger image acquisition.
Grabbed Image 31, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69375026875
2023-01-20 17:37:38.083512
Use the hardware to trigger image acquisition.
Grabbed Image 32, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69387620478
2023-01-20 17:37:38.206356
Use the hardware to trigger image acquisition.
Grabbed Image 33, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69400159678
2023-01-20 17:37:38.290332
Use the hardware to trigger image acquisition.
Grabbed Image 34, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69412742156
2023-01-20 17:37:38.384818
Use the hardware to trigger image acquisition.
Grabbed Image 35, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69425313751
2023-01-20 17:37:38.491463
Use the hardware to trigger image acquisition.
Grabbed Image 36, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69437831914
2023-01-20 17:37:38.586410
Use the hardware to trigger image acquisition.
Grabbed Image 37, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69450381067
2023-01-20 17:37:38.686677
Use the hardware to trigger image acquisition.
Grabbed Image 38, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69462934463
2023-01-20 17:37:38.787342
Use the hardware to trigger image acquisition.
Grabbed Image 39, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69475474482
2023-01-20 17:37:38.887842
Use the hardware to trigger image acquisition.
Grabbed Image 40, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69488022944
2023-01-20 17:37:38.987769
Use the hardware to trigger image acquisition.
Grabbed Image 41, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69500573084
2023-01-20 17:37:39.087536
Use the hardware to trigger image acquisition.
Grabbed Image 42, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69513164509
2023-01-20 17:37:39.188207
Use the hardware to trigger image acquisition.
Grabbed Image 43, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69525730356
2023-01-20 17:37:39.289628
Use the hardware to trigger image acquisition.
Grabbed Image 44, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69538299245
2023-01-20 17:37:39.389738
Use the hardware to trigger image acquisition.
Grabbed Image 45, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69550920664
2023-01-20 17:37:39.490641
Use the hardware to trigger image acquisition.
Grabbed Image 46, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69563530690
2023-01-20 17:37:39.591212
Use the hardware to trigger image acquisition.
Grabbed Image 47, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69576141448
2023-01-20 17:37:39.693100
Use the hardware to trigger image acquisition.
Grabbed Image 48, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69588748880
2023-01-20 17:37:39.793980
Use the hardware to trigger image acquisition.
Grabbed Image 49, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69601320129
2023-01-20 17:37:39.894472
Use the hardware to trigger image acquisition.
Grabbed Image 50, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69613879414
2023-01-20 17:37:39.994800
Use the hardware to trigger image acquisition.
Grabbed Image 51, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69626458292
2023-01-20 17:37:40.096371
Use the hardware to trigger image acquisition.
Grabbed Image 52, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69638987503
2023-01-20 17:37:40.195717
Use the hardware to trigger image acquisition.
Grabbed Image 53, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69651528020
2023-01-20 17:37:40.295144
Use the hardware to trigger image acquisition.
Grabbed Image 54, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69664077316
2023-01-20 17:37:40.396499
Use the hardware to trigger image acquisition.
Grabbed Image 55, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69676616561
2023-01-20 17:37:40.496442
Use the hardware to trigger image acquisition.
Grabbed Image 56, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69689162648
2023-01-20 17:37:40.596441
Use the hardware to trigger image acquisition.
Grabbed Image 57, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69701719716
2023-01-20 17:37:40.696722
Use the hardware to trigger image acquisition.
Grabbed Image 58, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69714310302
2023-01-20 17:37:40.797456
Use the hardware to trigger image acquisition.
Grabbed Image 59, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69726874089
2023-01-20 17:37:40.898156
Use the hardware to trigger image acquisition.
Grabbed Image 60, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69739445388
2023-01-20 17:37:40.999115
Use the hardware to trigger image acquisition.
Grabbed Image 61, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69752059951
2023-01-20 17:37:41.099817
Use the hardware to trigger image acquisition.
Grabbed Image 62, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69764675872
2023-01-20 17:37:41.200644
Use the hardware to trigger image acquisition.
Grabbed Image 63, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69777286605
2023-01-20 17:37:41.302333
Use the hardware to trigger image acquisition.
Grabbed Image 64, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69789891357
2023-01-20 17:37:41.402239
Use the hardware to trigger image acquisition.
Grabbed Image 65, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69802463943
2023-01-20 17:37:41.502898
Use the hardware to trigger image acquisition.
Grabbed Image 66, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69815023193
2023-01-20 17:37:41.603933
Use the hardware to trigger image acquisition.
Grabbed Image 67, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69827601908
2023-01-20 17:37:41.713853
Use the hardware to trigger image acquisition.
Grabbed Image 68, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69840137364
2023-01-20 17:37:41.805043
Use the hardware to trigger image acquisition.
Grabbed Image 69, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69852673110
2023-01-20 17:37:41.905313
Use the hardware to trigger image acquisition.
Grabbed Image 70, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69865224309
2023-01-20 17:37:42.006164
Use the hardware to trigger image acquisition.
Grabbed Image 71, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69877766118
2023-01-20 17:37:42.106135
Use the hardware to trigger image acquisition.
Grabbed Image 72, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69890310170
2023-01-20 17:37:42.206329
Use the hardware to trigger image acquisition.
Grabbed Image 73, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69902866068
2023-01-20 17:37:42.307662
Use the hardware to trigger image acquisition.
Grabbed Image 74, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69915423990
2023-01-20 17:37:42.407830
Use the hardware to trigger image acquisition.
Grabbed Image 75, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69928009058
2023-01-20 17:37:42.507450
Use the hardware to trigger image acquisition.
Grabbed Image 76, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69940575968
2023-01-20 17:37:42.608476
Use the hardware to trigger image acquisition.
Grabbed Image 77, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69953183369
2023-01-20 17:37:42.714160
Use the hardware to trigger image acquisition.
Grabbed Image 78, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69965801879
2023-01-20 17:37:42.815924
Use the hardware to trigger image acquisition.
Grabbed Image 79, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69978420425
2023-01-20 17:37:42.911715
Use the hardware to trigger image acquisition.
Grabbed Image 80, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 69991019602
2023-01-20 17:37:43.012721
Use the hardware to trigger image acquisition.
Grabbed Image 81, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70003598978
2023-01-20 17:37:43.138047
Use the hardware to trigger image acquisition.
Grabbed Image 82, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70016156438
2023-01-20 17:37:43.224028
Use the hardware to trigger image acquisition.
Grabbed Image 83, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70028733469
2023-01-20 17:37:43.313170
Use the hardware to trigger image acquisition.
Grabbed Image 84, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70041305699
2023-01-20 17:37:43.413662
Use the hardware to trigger image acquisition.
Grabbed Image 85, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70053823114
2023-01-20 17:37:43.513898
Use the hardware to trigger image acquisition.
Grabbed Image 86, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70066363199
2023-01-20 17:37:43.632415
Use the hardware to trigger image acquisition.
Grabbed Image 87, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70078920104
2023-01-20 17:37:43.714444
Use the hardware to trigger image acquisition.
Grabbed Image 88, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70091464156
2023-01-20 17:37:43.815144
Use the hardware to trigger image acquisition.
Grabbed Image 89, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70104012206
2023-01-20 17:37:43.920697
Use the hardware to trigger image acquisition.
Grabbed Image 90, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70116578908
2023-01-20 17:37:44.021300
Use the hardware to trigger image acquisition.
Grabbed Image 91, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70129162139
2023-01-20 17:37:44.116445
Use the hardware to trigger image acquisition.
Grabbed Image 92, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70141730036
2023-01-20 17:37:44.219856
Use the hardware to trigger image acquisition.
Grabbed Image 93, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70154342946
2023-01-20 17:37:44.323651
Use the hardware to trigger image acquisition.
Grabbed Image 94, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70166963068
2023-01-20 17:37:44.423657
Use the hardware to trigger image acquisition.
Grabbed Image 95, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70179578053
2023-01-20 17:37:44.519804
Use the hardware to trigger image acquisition.
Grabbed Image 96, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70192181172
2023-01-20 17:37:44.623691
Use the hardware to trigger image acquisition.
Grabbed Image 97, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70204756586
2023-01-20 17:37:44.724647
Use the hardware to trigger image acquisition.
Grabbed Image 98, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70217317113
2023-01-20 17:37:44.821691
Use the hardware to trigger image acquisition.
Grabbed Image 99, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70229897389
2023-01-20 17:37:44.922615
Use the hardware to trigger image acquisition.
Grabbed Image 100, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70242432500
2023-01-20 17:37:45.022655
Use the hardware to trigger image acquisition.
Grabbed Image 101, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70254967208
2023-01-20 17:37:45.123303
Use the hardware to trigger image acquisition.
Grabbed Image 102, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70267518732
2023-01-20 17:37:45.223693
Use the hardware to trigger image acquisition.
Grabbed Image 103, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70280066319
2023-01-20 17:37:45.324176
Use the hardware to trigger image acquisition.
Grabbed Image 104, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70292611933
2023-01-20 17:37:45.424511
Use the hardware to trigger image acquisition.
Grabbed Image 105, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70305167190
2023-01-20 17:37:45.525072
Use the hardware to trigger image acquisition.
Grabbed Image 106, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70317727121
2023-01-20 17:37:45.625882
Use the hardware to trigger image acquisition.
Grabbed Image 107, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70330312336
2023-01-20 17:37:45.726580
Use the hardware to trigger image acquisition.
Grabbed Image 108, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70342877883
2023-01-20 17:37:45.827316
Use the hardware to trigger image acquisition.
Grabbed Image 109, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70355490529
2023-01-20 17:37:45.927563
Use the hardware to trigger image acquisition.
Grabbed Image 110, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70368112284
2023-01-20 17:37:46.028433
Use the hardware to trigger image acquisition.
Grabbed Image 111, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70380729110
2023-01-20 17:37:46.129077
Use the hardware to trigger image acquisition.
Grabbed Image 112, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70393329249
2023-01-20 17:37:46.260261
Use the hardware to trigger image acquisition.
Grabbed Image 113, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70405908732
2023-01-20 17:37:46.330639
Use the hardware to trigger image acquisition.
Grabbed Image 114, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70418466532
2023-01-20 17:37:46.432155
Use the hardware to trigger image acquisition.
Grabbed Image 115, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70431044911
2023-01-20 17:37:46.538239
Use the hardware to trigger image acquisition.
Grabbed Image 116, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70443582839
2023-01-20 17:37:46.632196
Use the hardware to trigger image acquisition.
Grabbed Image 117, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70456124740
2023-01-20 17:37:46.732787
Use the hardware to trigger image acquisition.
Grabbed Image 118, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70468678156
2023-01-20 17:37:46.833879
Use the hardware to trigger image acquisition.
Grabbed Image 119, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70481222381
2023-01-20 17:37:46.933946
Use the hardware to trigger image acquisition.
Grabbed Image 120, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70493764378
2023-01-20 17:37:47.033415
Use the hardware to trigger image acquisition.
Grabbed Image 121, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70506324559
2023-01-20 17:37:47.134135
Use the hardware to trigger image acquisition.
Grabbed Image 122, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70518883249
2023-01-20 17:37:47.234722
Use the hardware to trigger image acquisition.
Grabbed Image 123, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70531470184
2023-01-20 17:37:47.335051
Use the hardware to trigger image acquisition.
Grabbed Image 124, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70544037979
2023-01-20 17:37:47.436875
Use the hardware to trigger image acquisition.
Grabbed Image 125, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70556648696
2023-01-20 17:37:47.543494
Use the hardware to trigger image acquisition.
Grabbed Image 126, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70569269810
2023-01-20 17:37:47.638536
Use the hardware to trigger image acquisition.
Grabbed Image 127, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70581887201
2023-01-20 17:37:47.738692
Use the hardware to trigger image acquisition.
Grabbed Image 128, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70594487869
2023-01-20 17:37:47.839325
Use the hardware to trigger image acquisition.
Grabbed Image 129, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70607068049
2023-01-20 17:37:47.940158
Use the hardware to trigger image acquisition.
Grabbed Image 130, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70619626566
2023-01-20 17:37:48.040609
Use the hardware to trigger image acquisition.
Grabbed Image 131, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70632204783
2023-01-20 17:37:48.145655
Use the hardware to trigger image acquisition.
Grabbed Image 132, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70644776687
2023-01-20 17:37:48.262885
Use the hardware to trigger image acquisition.
Grabbed Image 133, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70657294235
2023-01-20 17:37:48.342285
Use the hardware to trigger image acquisition.
Grabbed Image 134, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70669833907
2023-01-20 17:37:48.442001
Use the hardware to trigger image acquisition.
Grabbed Image 135, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70682389709
2023-01-20 17:37:48.542707
Use the hardware to trigger image acquisition.
Grabbed Image 136, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70694926671
2023-01-20 17:37:48.643572
Use the hardware to trigger image acquisition.
Grabbed Image 137, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70707478144
2023-01-20 17:37:48.743597
Use the hardware to trigger image acquisition.
Grabbed Image 138, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70720042164
2023-01-20 17:37:48.844685
Use the hardware to trigger image acquisition.
Grabbed Image 139, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70732626332
2023-01-20 17:37:48.944598
Use the hardware to trigger image acquisition.
Grabbed Image 140, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70745191919
2023-01-20 17:37:49.045549
Use the hardware to trigger image acquisition.
Grabbed Image 141, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70757795689
2023-01-20 17:37:49.145996
Use the hardware to trigger image acquisition.
Grabbed Image 142, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70770418395
2023-01-20 17:37:49.247600
Use the hardware to trigger image acquisition.
Grabbed Image 143, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70783026662
2023-01-20 17:37:49.347913
Use the hardware to trigger image acquisition.
Grabbed Image 144, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70795632425
2023-01-20 17:37:49.448819
Use the hardware to trigger image acquisition.
Grabbed Image 145, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70808217885
2023-01-20 17:37:49.549147
Use the hardware to trigger image acquisition.
Grabbed Image 146, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70820769180
2023-01-20 17:37:49.649681
Use the hardware to trigger image acquisition.
Grabbed Image 147, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70833349629
2023-01-20 17:37:49.750169
Use the hardware to trigger image acquisition.
Grabbed Image 148, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70845921742
2023-01-20 17:37:49.850856
Use the hardware to trigger image acquisition.
Grabbed Image 149, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70858443216
2023-01-20 17:37:49.951830
Use the hardware to trigger image acquisition.
Grabbed Image 150, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70870986404
2023-01-20 17:37:50.051746
Use the hardware to trigger image acquisition.
Grabbed Image 151, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70883537739
2023-01-20 17:37:50.152268
Use the hardware to trigger image acquisition.
Grabbed Image 152, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70896075383
2023-01-20 17:37:50.252284
Use the hardware to trigger image acquisition.
Grabbed Image 153, width = 1600, height = 1200
Printing chunk data from image...
<class 'PySpin.ImagePtr'>
Timestamp: 70908629480
2023-01-20 17:37:50.352433