AW00136902000
Features
Basler dart BCON
99
You can set the OffsetX, OffsetY, Width, and Height parameter values from within your application
software by using the Basler pylon API. The following code snippets illustrate using the API to get
the maximum allowed settings for the Width and Height parameters. They also illustrate setting the
OffsetX, OffsetY, Width, and Height parameter values:
int64_t i = camera.WidthMax.GetValue();
int64_t i = camera.HeightMax.GetValue();
camera.Width.SetValue(1294);
camera.Height.SetValue(964);
camera.OffsetY.SetValue(0);
camera.OffsetX.SetValue(0);
Changing ROI Parameters "On-the-Fly"
Making ROI parameter changes “on-the-fly” means making the parameter changes while the
camera is capturing images continuously.
On-the-fly changes are only allowed for the following parameters:
OffsetX
OffsetY
Changes to the ROI size are not allowed on-the-fly.