
Features
AW00136902000
102
Basler dart BCON
The range of allowed settings for the BinningHorizontal and the BinningVertical parameter values
varies by camera model as shown in
.
You can set the Binning Horizontal and the BinningVertical parameter values from within your
application software by using the Basler pylon API. The following code snippet illustrates using the
API to set the parameter values:
// Enable horizontal binning by 4
camera.BinningHorizontal.SetValue(4);
// Enable vertical binning by 2
camera.BinningVertical.SetValue(2);
// Disable horizontal and vertical binning
camera.BinningVertical.SetValue(1);
camera.BinningHorizontal.SetValue(1);
Always set the BinningHorizontal parameter first, then set the
BinningVertical parameter.
If the BinningHorizontal parameter is not set first, some combinations of vertical
binning and horizontal binning can’t be achieved.
For a list of allowed combinations, see
Example:
On daA1600-60bm/bc cameras, you can’t set the BinningVertical
parameter to 2 when the BinningHorizontal parameter is set to 1. Set the
BinningHorizontal parameter to 2 first, then set the BinningVertical parameter to 2.
Camera Model
Allowed Settings
BinningHorizontal
Allowed Settings
BinningVertical
Allowed
Combinations
(H x V Binning)
Notes
daA1280-54bm/bc
1, 2
1, 2
1 x 1
2 x 1
2 x 2
daA1600-60bm/bc
1, 2
1, 2
1 x 1
2 x 2
daA2500-14bm/bc
1, 2, 3 (*), 4
1, 2, 3, 4
All
* Horizontal binning by 3 is
not supported. Setting the
parameter value to 3 is
allowed, but will result in an
effective horizontal binning
by 2.
Table 36: Binning Horizontal and Binning Vertical Settings