Balluff - BVS CA-GX0 / BVS CA-GX2 Technical Documentation
|
The IMX420 used in the BVS CA-GX2-0071Z / mvBlueCOUGAR-XD107 is a Pregius sensor of the third generation. This sensor features a dual exposure mode, i.e. after a trigger event, for example, different image areas can be exposed to light at the same time differently.
To activate the dual exposure mode we introduced a new exposure mode called mvMultiZone.
If this mode is selected you can set the "mv Exposure Horizontal Zone Divider". This property indicates where the zones are divided horizontally. The step size is 12.5%.
The exposure time of the different zones can be specified using the "Exposure Time Selector". Possible zones are
To activate the dual exposure, just
#include <mvIMPACT_CPP/mvIMPACT_acquire_GenICam.h> // more code GenICam::AcquisitionControl ac( pDev ); ac.exposureMode.writeS( "mvMultiZone" ); ac.exposureTimeSelector.writeS( "mvHorizontalZone1" ); ac.exposureTime.write( 5000 ); ac.exposureHorizontalDivider.write( 50 ); // more code