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 white balance.
genericC++ |
---|
auto balanceWhiteAutoMode = m_autoFeaturesManager.GetBalanceWhiteAutoMode(); |
Setting the automatic white balance.
genericC++ |
---|
// Disable BalanceWhiteAuto mode |
Querying if the automatic white balance control has been completed (e.g. after activation of a “Once” control).
genericC++ |
---|
bool finished = m_autoFeaturesManager.IsBalanceWhiteAutoFinished(); |
Querying which gain is used for white balance control.
genericC++ |
---|
auto gainType = m_autoFeaturesManager.GetGainTypeColor(); |
Querying if the camera supports color gain control via the AutoFeaturesManager.
genericC++ |
---|
bool balanceWhiteAutoSupported = AutoFeaturesManager::GainType::None != m_autoFeaturesManager.GetGainTypeColor(); |
Automatic white balance: querying and setting a ROI
The image region for the white balance can be queried or set as follows.
genericC++ |
---|
size_t x; |