-
Notifications
You must be signed in to change notification settings - Fork 0
/
avt_output.txt
1578 lines (1386 loc) · 46.3 KB
/
avt_output.txt
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
[0m[ INFO] [1571677891.253178463]: [Vimba System]: AVT Vimba System initialized successfully[0m
[0m[ INFO] [1571677891.409678136]: /// Camera Name: GE4900C[0m
[0m[ INFO] [1571677891.409776600]: /// Model Name: GE4900C (02-2096C)[0m
[0m[ INFO] [1571677891.409830407]: /// Camera ID: DEV_000F310200FB[0m
[0m[ INFO] [1571677891.409899942]: /// Serial Number: 02-2096C-06076[0m
[0m[ INFO] [1571677891.409951365]: /// @ Interface ID: enp2s0[0m
[0m[ INFO] [1571677891.517324653]: Trying to open camera by IP: 192.168.0.199[0m
[0m[ INFO] [1571677891.717971031]: [/camera]: Opened camera with
* Name : GE4900C
* Model : GE4900C (02-2096C)
* ID : DEV_000F310200FB
* S/N : 02-2096C-06076
* Itf. ID : enp2s0
* Itf. Type: GigE
* Access : [0m
/// Feature Name: AcquisitionAbort
/// Display Name: AcquisitionAbort
/// Tooltip:
/// Description: Abort acquisition. Acquisition will stop immediately, but a partially transferred image will be completed.
/// SNFC Namespace: Standard
/// Unit:
/// Value: [None]
/// Feature Name: AcquisitionFrameCount
/// Display Name: AcquisitionFrameCount
/// Tooltip:
/// Description: This is the number of images to acquire when in MultiFrame and Recorder acquisition modes.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 1 int
/// Feature Name: AcquisitionFrameRateAbs
/// Display Name: AcquisitionFrameRateAbs
/// Tooltip:
/// Description: Frame rate, in frames per second. This is applicable when either the FrameStart trigger mode is disabled, or the FrameStart trigger source is FixedRate. Depending on the exposure duration, the camera may not achieve the frame rate set here.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 4 float
/// Feature Name: AcquisitionFrameRateLimit
/// Display Name: AcquisitionFrameRateLimit
/// Tooltip:
/// Description: This is the maximum frame rate possible for the current exposure duration and image format.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 4.21003 float
/// Feature Name: AcquisitionMode
/// Display Name: AcquisitionMode
/// Tooltip:
/// Description: The acquisition mode determines the behavior of the camera when acquisition start is triggered. "Continuous" mode: the camera will acquire images until acquisition stop is triggered. "SingleFrame" mode: the camera will acquire a single image. "MultiFrame" mode: the camera will acquire the number of images specified by AcquisitionFrameCount. "Recorder" mode: the camera will run continuously, and when the recorder event is triggered, send pre-trigger and post-trigger images to the host.
/// SNFC Namespace: Standard
/// Unit:
/// Value: Continuous str Enum
/// Feature Name: AcquisitionStart
/// Display Name: AcquisitionStart
/// Tooltip:
/// Description: Start acquisition. Before image acquisition can occur, acquisition must be started, either by a hardware trigger or this software command.
/// SNFC Namespace: Standard
/// Unit:
/// Value: [None]
/// Feature Name: AcquisitionStop
/// Display Name: AcquisitionStop
/// Tooltip:
/// Description: Stop acquisition. Acquisition will stop after acquisition of the current frame is complete.
/// SNFC Namespace: Standard
/// Unit:
/// Value: [None]
/// Feature Name: BalanceRatioAbs
/// Display Name: BalanceRatioAbs
/// Tooltip:
/// Description: Adjust the gain of the red or blue channel (see BalanceRatioSelector). The green channel gain is always 1.00.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 1.02 float
/// Feature Name: BalanceRatioSelector
/// Display Name: BalanceRatioSelector
/// Tooltip:
/// Description: Select the Red or Blue channel to adjust with BalanceRatioAbs.
/// SNFC Namespace: Standard
/// Unit:
/// Value: Red str Enum
/// Feature Name: BalanceWhiteAuto
/// Display Name: BalanceWhiteAuto
/// Tooltip:
/// Description: Automatic whitebalance mode. Off: automatic mode is off. Once: auto-whitebalance occurs until target is achieved, then BalanceWhiteAuto returns to Off. Continuous: auto-whitebalance always runs.
/// SNFC Namespace: Standard
/// Unit:
/// Value: Continuous str Enum
/// Feature Name: BalanceWhiteAutoAdjustTol
/// Display Name: BalanceWhiteAutoAdjustTol
/// Tooltip:
/// Description: Tolerance, in percent, allowed from the ideal whitebalance values, within which the auto-whitebalance does not run. This prevents needless small adjustments from occurring each image.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 5 int
/// Feature Name: BalanceWhiteAutoRate
/// Display Name: BalanceWhiteAutoRate
/// Tooltip:
/// Description: Rate of white balance adjustments, from 1 (slowest) to 100 (fastest). Use this control to slow down the auto-whitebalance adjustments.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 100 int
/// Feature Name: BandwidthControlMode
/// Display Name: BandwidthControlMode
/// Tooltip:
/// Description: Bandwidth allocation can be controlled by StreamBytesPerSecond, or by register SCPD0. If you do not understand SCPD0 and how this driver uses this register, leave this set to "StreamBytesPerSecond".
/// SNFC Namespace: Custom
/// Unit:
/// Value: StreamBytesPerSecond str Enum
/// Feature Name: BinningHorizontal
/// Display Name: BinningHorizontal
/// Tooltip:
/// Description: Binning in horizontal direction. Binning is the summing of charge of adjacent pixels.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 1 int
/// Feature Name: BinningVertical
/// Display Name: BinningVertical
/// Tooltip:
/// Description: Binning in vertical direction. Binning is the summing of charge of adjacent pixels.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 1 int
/// Feature Name: ChunkModeActive
/// Display Name: ChunkModeActive
/// Tooltip:
/// Description:
/// SNFC Namespace: Standard
/// Unit:
/// Value: 0 bool
/// Feature Name: DSPSubregionBottom
/// Display Name: DSPSubregionBottom
/// Tooltip:
/// Description: The DSP subregion is the area of the image used for measurements in "auto-" functions such as auto-exposure and auto-gain. DSPSubregionLeft is the bottom row, relative to the current image region. For convenience, this value may be higher than the maximum Height.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 1440 int
/// Feature Name: DSPSubregionLeft
/// Display Name: DSPSubregionLeft
/// Tooltip:
/// Description: The DSP subregion is the area of the image used for measurements in "auto-" functions such as auto-exposure and auto-gain. DSPSubregionLeft is the left column, relative to the current image region.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: DSPSubregionRight
/// Display Name: DSPSubregionRight
/// Tooltip:
/// Description: The DSP subregion is the area of the image used for measurements in "auto-" functions such as auto-exposure and auto-gain. DSPSubregionLeft is the right column, relative to the current image region. For convenience, this value may be higher than the maximum Width.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 1920 int
/// Feature Name: DSPSubregionTop
/// Display Name: DSPSubregionTop
/// Tooltip:
/// Description: The DSP subregion is the area of the image used for measurements in "auto-" functions such as auto-exposure and auto-gain. DSPSubregionLeft is the top row, relative to the current image region.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: DefectMaskColumnEnable
/// Display Name: DefectMaskColumnEnable
/// Tooltip:
/// Description: Enable masking of defective columns. Defective columns are detected and recorded at the factory.
/// SNFC Namespace: Custom
/// Unit:
/// Value: Enabled str Enum
/// Feature Name: DeviceFirmwareVersion
/// Display Name: DeviceFirmwareVersion
/// Tooltip:
/// Description: Firmware version of this Prosilica GigE camera.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 00.01.42.04 str
/// Feature Name: DeviceID
/// Display Name: DeviceID
/// Tooltip:
/// Description: Serial number.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 02-2096C-06076 str
/// Feature Name: DeviceModelName
/// Display Name: DeviceModelName
/// Tooltip:
/// Description: Camera model name.
/// SNFC Namespace: Standard
/// Unit:
/// Value: GE4900C str
/// Feature Name: DevicePartNumber
/// Display Name: DevicePartNumber
/// Tooltip:
/// Description: Device part number.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 02-2096C str
/// Feature Name: DeviceScanType
/// Display Name: DeviceScanType
/// Tooltip:
/// Description:
/// SNFC Namespace: Standard
/// Unit:
/// Value: Areascan str Enum
/// Feature Name: DeviceUserID
/// Display Name: DeviceUserID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: str
/// Feature Name: DeviceVendorName
/// Display Name: DeviceVendorName
/// Tooltip:
/// Description:
/// SNFC Namespace: Standard
/// Unit:
/// Value: Allied Vision Technologies str
/// Feature Name: EventAcquisitionEnd
/// Display Name: EventAcquisitionEnd
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40001 int
/// Feature Name: EventAcquisitionEndFrameID
/// Display Name: EventAcquisitionEndFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventAcquisitionEndTimestamp
/// Display Name: EventAcquisitionEndTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventAcquisitionRecordTrigger
/// Display Name: EventAcquisitionRecordTrigger
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 40004 int
/// Feature Name: EventAcquisitionRecordTriggerFrameID
/// Display Name: EventAcquisitionRecordTriggerFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventAcquisitionRecordTriggerTimestamp
/// Display Name: EventAcquisitionRecordTriggerTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventAcquisitionStart
/// Display Name: EventAcquisitionStart
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40000 int
/// Feature Name: EventAcquisitionStartFrameID
/// Display Name: EventAcquisitionStartFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventAcquisitionStartTimestamp
/// Display Name: EventAcquisitionStartTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventError
/// Display Name: EventError
/// Tooltip:
/// Description: ID value of error event. The error event occurs if there is a problem on the camera; this event should be reported to technical support. If you use the message channel for event notification, you are always subscribed to this event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 65535 int
/// Feature Name: EventErrorFrameID
/// Display Name: EventErrorFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventErrorTimestamp
/// Display Name: EventErrorTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventExposureEnd
/// Display Name: EventExposureEnd
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40003 int
/// Feature Name: EventExposureEndFrameID
/// Display Name: EventExposureEndFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventExposureEndTimestamp
/// Display Name: EventExposureEndTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventFrameTrigger
/// Display Name: EventFrameTrigger
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40002 int
/// Feature Name: EventFrameTriggerFrameID
/// Display Name: EventFrameTriggerFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventFrameTriggerTimestamp
/// Display Name: EventFrameTriggerTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine1FallingEdge
/// Display Name: EventLine1FallingEdge
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40011 int
/// Feature Name: EventLine1FallingEdgeFrameID
/// Display Name: EventLine1FallingEdgeFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine1FallingEdgeTimestamp
/// Display Name: EventLine1FallingEdgeTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine1RisingEdge
/// Display Name: EventLine1RisingEdge
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40010 int
/// Feature Name: EventLine1RisingEdgeFrameID
/// Display Name: EventLine1RisingEdgeFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine1RisingEdgeTimestamp
/// Display Name: EventLine1RisingEdgeTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine2FallingEdge
/// Display Name: EventLine2FallingEdge
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40013 int
/// Feature Name: EventLine2FallingEdgeFrameID
/// Display Name: EventLine2FallingEdgeFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine2FallingEdgeTimestamp
/// Display Name: EventLine2FallingEdgeTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine2RisingEdge
/// Display Name: EventLine2RisingEdge
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40012 int
/// Feature Name: EventLine2RisingEdgeFrameID
/// Display Name: EventLine2RisingEdgeFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine2RisingEdgeTimestamp
/// Display Name: EventLine2RisingEdgeTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine3FallingEdge
/// Display Name: EventLine3FallingEdge
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40015 int
/// Feature Name: EventLine3FallingEdgeFrameID
/// Display Name: EventLine3FallingEdgeFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine3FallingEdgeTimestamp
/// Display Name: EventLine3FallingEdgeTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine3RisingEdge
/// Display Name: EventLine3RisingEdge
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40014 int
/// Feature Name: EventLine3RisingEdgeFrameID
/// Display Name: EventLine3RisingEdgeFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine3RisingEdgeTimestamp
/// Display Name: EventLine3RisingEdgeTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine4FallingEdge
/// Display Name: EventLine4FallingEdge
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40017 int
/// Feature Name: EventLine4FallingEdgeFrameID
/// Display Name: EventLine4FallingEdgeFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine4FallingEdgeTimestamp
/// Display Name: EventLine4FallingEdgeTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine4RisingEdge
/// Display Name: EventLine4RisingEdge
/// Tooltip:
/// Description: ID value of event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 40016 int
/// Feature Name: EventLine4RisingEdgeFrameID
/// Display Name: EventLine4RisingEdgeFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventLine4RisingEdgeTimestamp
/// Display Name: EventLine4RisingEdgeTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventNotification
/// Display Name: EventNotification
/// Tooltip:
/// Description: Activate event-notification on the GigE Vision message channel.
/// SNFC Namespace: Standard
/// Unit:
/// Value: Off str Enum
/// Feature Name: EventOverflow
/// Display Name: EventOverflow
/// Tooltip:
/// Description: ID value of overflow event. The overflow event occurs when one or more notification events are lost on the camera. If you use the message channel for event notification, you are always subscribed to this event.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 65534 int
/// Feature Name: EventOverflowFrameID
/// Display Name: EventOverflowFrameID
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventOverflowTimestamp
/// Display Name: EventOverflowTimestamp
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: EventSelector
/// Display Name: EventSelector
/// Tooltip:
/// Description: Activate event-notification on the GigE Vision message channel.
/// SNFC Namespace: Standard
/// Unit:
/// Value: AcquisitionStart str Enum
/// Feature Name: EventsEnable1
/// Display Name: EventsEnable1
/// Tooltip:
/// Description: Activate event-notification on the GigE Vision message channel. For programmers. See register documentation.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: ExposureAuto
/// Display Name: ExposureAuto
/// Tooltip:
/// Description: Automatic exposure mode. Off: automatic mode is off. Once: auto-exposure occurs until target is achieved, then ExposureAuto returns to Off. Continuous: auto-exposure always runs.
/// SNFC Namespace: Standard
/// Unit:
/// Value: Continuous str Enum
/// Feature Name: ExposureAutoAdjustTol
/// Display Name: ExposureAutoAdjustTol
/// Tooltip:
/// Description: Tolerance, in percent, allowed from the ideal exposure value, within which the auto-exposure does not run. This prevents needless small adjustments from occurring each image.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 5 int
/// Feature Name: ExposureAutoAlg
/// Display Name: ExposureAutoAlg
/// Tooltip:
/// Description: Algorithm used for auto-exposure. Mean: target a particular mean value of all measured pixels in the image. FitRange: adjust the maximum pixel value to fit the sensor range.
/// SNFC Namespace: Custom
/// Unit:
/// Value: FitRange str Enum
/// Feature Name: ExposureAutoMax
/// Display Name: ExposureAutoMax
/// Tooltip:
/// Description: Maximum auto-exposure value, in microseconds.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 50000 int
/// Feature Name: ExposureAutoMin
/// Display Name: ExposureAutoMin
/// Tooltip:
/// Description: Minimum auto-exposure value, in microseconds.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 625 int
/// Feature Name: ExposureAutoOutliers
/// Display Name: ExposureAutoOutliers
/// Tooltip:
/// Description: Number of upper outliers to discard before calculating exposure adjustments. This is in ten-thousandths of the number pixels in the image.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: ExposureAutoRate
/// Display Name: ExposureAutoRate
/// Tooltip:
/// Description: Rate of exposure adjustments, from 1 (slowest) to 100 (fastest). Use this control to slow down the auto-exposure adjustments.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 100 int
/// Feature Name: ExposureAutoTarget
/// Display Name: ExposureAutoTarget
/// Tooltip:
/// Description: When ExposureAutoAlg is Mean, this is the target image mean value, in percent. Higher values result in brighter images.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 50 int
/// Feature Name: ExposureMode
/// Display Name: ExposureMode
/// Tooltip:
/// Description: Method of control for exposure duration. Timed mode: exposure duration is set by ExposureTimeAbs.
/// SNFC Namespace: Standard
/// Unit:
/// Value: Timed str Enum
/// Feature Name: ExposureTimeAbs
/// Display Name: ExposureTimeAbs
/// Tooltip:
/// Description: Exposure duration, in microseconds.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 50000 float
/// Feature Name: FirmwareVerBuild
/// Display Name: FirmwareVerBuild
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 4 int
/// Feature Name: FirmwareVerMajor
/// Display Name: FirmwareVerMajor
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 1 int
/// Feature Name: FirmwareVerMinor
/// Display Name: FirmwareVerMinor
/// Tooltip:
/// Description:
/// SNFC Namespace: Custom
/// Unit:
/// Value: 42 int
/// Feature Name: GVCPCmdRetries
/// Display Name: Command Retries
/// Tooltip:
/// Description: Number of time a particular command to the device will be resent when no answer is being received.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 5 int
/// Feature Name: GVCPCmdTimeout
/// Display Name: Command Timeout
/// Tooltip:
/// Description: Timeout waiting for an answer from the device.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 250 int
/// Feature Name: GVSPAdjustPacketSize
/// Display Name: GVSP Adjust Packet Size
/// Tooltip:
/// Description: Request the packet size used to be adjusted automatically.
/// SNFC Namespace: Custom
/// Unit:
/// Value: [None]
/// Feature Name: GVSPBurstSize
/// Display Name: GVSP Burst Size
/// Tooltip:
/// Description: Maximum number of GVSP packets to be processed in a burst.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 1 int
/// Feature Name: GVSPDriver
/// Display Name: GVSP Driver Selector
/// Tooltip:
/// Description: Streaming driver to be used.
/// SNFC Namespace: Custom
/// Unit:
/// Value: Socket str Enum
/// Feature Name: GVSPFilterVersion
/// Display Name: GVSP Filter Version
/// Tooltip:
/// Description: Version of the GVSP Filter driver.
/// SNFC Namespace: Custom
/// Unit:
/// Value: N/A str
/// Feature Name: GVSPHostReceiveBuffers
/// Display Name: GVSP Host Receive Buffers
/// Tooltip:
/// Description: Number of receive buffers to be used by the OS' socket (hint).
/// SNFC Namespace: Custom
/// Unit:
/// Value: 1024 int
/// Feature Name: GVSPMaxLookBack
/// Display Name: GVSP Max Look Back
/// Tooltip:
/// Description: Size of the missing GVSP packets detection windows.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 30 int
/// Feature Name: GVSPMaxRequests
/// Display Name: GVSP Max Requests
/// Tooltip:
/// Description: Maximum number of requests (to the device) for a missing GVSP packet.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: GVSPMaxWaitSize
/// Display Name: GVSP Max Wait Size
/// Tooltip:
/// Description: Maximum number of received GVSP packets following a resend request to wait before requesting again.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 100 int
/// Feature Name: GVSPMissingSize
/// Display Name: GVSP Missing Size
/// Tooltip:
/// Description: Maximum number of simulatenous missing GVSP packets before dropping the frame (0 = OFF).
/// SNFC Namespace: Custom
/// Unit:
/// Value: 256 int
/// Feature Name: GVSPPacketSize
/// Display Name: GVSP Packet Size
/// Tooltip:
/// Description: GVSP Packet size (in bytes).
/// SNFC Namespace: Custom
/// Unit:
/// Value: 1500 int
/// Feature Name: GVSPTiltingSize
/// Display Name: GVSP Tilting Size
/// Tooltip:
/// Description: Maximum number GVSP packets received from a following frame before dropping the frame (0 = OFF).
/// SNFC Namespace: Custom
/// Unit:
/// Value: 100 int
/// Feature Name: GVSPTimeout
/// Display Name: GVSP Timeout
/// Tooltip:
/// Description: Timeout (in ms) used for stream packets.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 70 int
/// Feature Name: GainAuto
/// Display Name: GainAuto
/// Tooltip:
/// Description: Automatic exposure mode. Off: automatic mode is off. Once: auto-gain occurs until target is achieved, then GainAuto returns to Off. Continuous: auto-gain always runs.
/// SNFC Namespace: Standard
/// Unit:
/// Value: Continuous str Enum
/// Feature Name: GainAutoAdjustTol
/// Display Name: GainAutoAdjustTol
/// Tooltip:
/// Description: Tolerance, in percent, allowed from the ideal gain value, within which the auto-gain does not run. This prevents needless small adjustments from occurring each image.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 5 int
/// Feature Name: GainAutoMax
/// Display Name: GainAutoMax
/// Tooltip:
/// Description: Maximum auto-gain value.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 25 int
/// Feature Name: GainAutoMin
/// Display Name: GainAutoMin
/// Tooltip:
/// Description: Minimum auto-gain value.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 0 int
/// Feature Name: GainAutoOutliers
/// Display Name: GainAutoOutliers
/// Tooltip:
/// Description: Number of upper outliers to discard before calculating gain adjustments. This is in ten-thousandths of the number pixels in the image.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 100 int
/// Feature Name: GainAutoRate
/// Display Name: GainAutoRate
/// Tooltip:
/// Description: Rate of gain adjustments, from 1 (slowest) to 100 (fastest). Use this control to slow down the auto-gain adjustments.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 50 int
/// Feature Name: GainAutoTarget
/// Display Name: GainAutoTarget
/// Tooltip:
/// Description: This is the target image mean value, in percent.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 50 int
/// Feature Name: GainRaw
/// Display Name: GainRaw
/// Tooltip:
/// Description: Gain value of analog A/D stage. Units are usually in dB.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 19 int
/// Feature Name: GainSelector
/// Display Name: GainSelector
/// Tooltip:
/// Description: (GenICam boilerplate. Always All.)
/// SNFC Namespace: Standard
/// Unit:
/// Value: All str Enum
/// Feature Name: GevCurrentDefaultGateway
/// Display Name: Current Default Gateway
/// Tooltip:
/// Description: Current Default Gateway of the device.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 16820416 int
/// Feature Name: GevCurrentIPAddress
/// Display Name: Current IP Address
/// Tooltip:
/// Description: Current IP address of the device.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 3338709184 int
/// Feature Name: GevCurrentSubnetMask
/// Display Name: Current Subnet Mask
/// Tooltip:
/// Description: Current Subnet Mask of the device.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 16777215 int
/// Feature Name: GevDeviceMACAddress
/// Display Name: Device MAC Address
/// Tooltip:
/// Description: 48-bit MAC address of the GVCP interface of the selected remote device.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 65246724347 int
/// Feature Name: GevHeartbeatInterval
/// Display Name: Heartbeat Interval
/// Tooltip:
/// Description: Interval of time (in ms) after which a heartbeat is sent by the host.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 1450 int
/// Feature Name: GevHeartbeatTimeout
/// Display Name: Heartbeat Timeout
/// Tooltip:
/// Description: Interval of time (in ms) after which a device rejects control by a host if no heartbeat activity is registered.
/// SNFC Namespace: Standard
/// Unit:
/// Value: 3000 int
/// Feature Name: GevIPConfigurationMode
/// Display Name: IP Configuration Mode
/// Tooltip:
/// Description: Current IP configuration mode.
/// SNFC Namespace: Custom
/// Unit:
/// Value: Persistent str Enum
/// Feature Name: GevPersistentDefaultGateway
/// Display Name: Persistent Default Gateway
/// Tooltip:
/// Description: Persistent Default Gateway of the device.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 16820416 int
/// Feature Name: GevPersistentIPAddress
/// Display Name: Persistent IP Address
/// Tooltip:
/// Description: Persistent IP address of the device.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 3338709184 int
/// Feature Name: GevPersistentSubnetMask
/// Display Name: Persistent Subnet Mask
/// Tooltip:
/// Description: Persistent Subnet Mask of the device.
/// SNFC Namespace: Custom
/// Unit:
/// Value: 16777215 int
/// Feature Name: GevSCPSPacketSize
/// Display Name: GevSCPSPacketSize
/// Tooltip:
/// Description:
/// SNFC Namespace: Standard
/// Unit:
/// Value: 1500 int
/// Feature Name: GevTimestampControlLatch