Please enable JavaScript to view this site.

IDS peak 2.10.0 / uEye+ firmware 3.34

IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.

Querying the current setting of the automatic exposure.

genericC++

auto exposureAutoMode = m_autoFeaturesManager.GetExposureAutoMode();

Setting the mode for automatic exposure.

genericC++

// Disable ExposureAuto mode
m_autoFeaturesManager.SetExposureAutoMode(AutoFeaturesManager::ExposureAutoMode::Off);
 
// Enable one time ExposureAuto mode
m_autoFeaturesManager.SetExposureAutoMode(AutoFeaturesManager::ExposureAutoMode::Once);
 
// Enable continuous ExposureAuto mode
m_autoFeaturesManager.SetExposureAutoMode(AutoFeaturesManager::ExposureAutoMode::Continuous);

Querying if the automatic exposure control has been completed (e.g. after activation of a “Once” control).

genericC++

bool finished = m_autoFeaturesManager.IsExposureAutoFinished();

© 2024 IDS Imaging Development Systems GmbH