You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i accidentally put BalanceWhiteAuto into the wrong parameter group (namely AcquisitionControl instead of AnalogControl) and spent way too long to figure out why it wasn't working.
there's no logging available which would validate the parameters.
if there's a value to be set it is being logged in debug mode:
[component_container-1] 1733258515.305053145: [camera_driver_right] [DEBUG] Evaluating 'AcquisitionControl.ExposureAuto' for stream 0.
[component_container-1] 1733258515.305088493: [camera_driver_right] [DEBUG] Setting 'ExposureAuto' to 'Continuous'
since all the values are evaluated manually in the code there are lots of evaluating [..] entries (and this finally helped me spot that i had the wrong group), but there's no check on the values in parameters to make sure that they're well-known.
i think it'd be beneficially if a check would be added which validates that all entries in parameters are valid and prints warnings (if not errors) in case they're not.
The text was updated successfully, but these errors were encountered:
i accidentally put
BalanceWhiteAuto
into the wrong parameter group (namelyAcquisitionControl
instead ofAnalogControl
) and spent way too long to figure out why it wasn't working.there's no logging available which would validate the parameters.
if there's a value to be set it is being logged in debug mode:
since all the values are evaluated manually in the code there are lots of
evaluating [..]
entries (and this finally helped me spot that i had the wrong group), but there's no check on the values inparameters
to make sure that they're well-known.i think it'd be beneficially if a check would be added which validates that all entries in
parameters
are valid and prints warnings (if not errors) in case they're not.The text was updated successfully, but these errors were encountered: