据我所知,您可以在 C API(和最新的 Leibniz 版本)中访问禁用自动相机配置,然后设置 ISO 参数(我昨天尝试过),云采集和彩色帧采集运行良好。但这似乎仅适用于 Color Cam(没有明确说明,但 FishEye 似乎不能像这样可调)。
tango_client_api 的评论摘录。H :
" 可以设置的支持的配置参数有:
///
/// <table>
/// <tr><td class="indexkey">boolean config_color_mode_auto</td><td
/// class="indexvalue">
/// Use auto-exposure/auto-whitebalance with the color camera. Defaults to
/// true, and
/// if true, the values for config_color_iso and config_color_exp are ignored.
/// </td></tr>
///
/// <tr><td class="indexkey">int32 config_color_iso</td><td
/// class="indexvalue">ISO value for the color camera.
/// One of 100, 200, 400 or 800. Default is 100. Only applied if
/// config_color_mode_auto is set to false.</td></tr>
///
/// <tr><td class="indexkey">int32 config_color_exp</td><td class="indexvalue">
/// Exposure value for the color camera, in nanoseconds. Default is
/// 11100000 (11.1 ms). Valid from 0 to 30000000. Only applied if
/// config_color_mode_auto is set to false.</td></tr>
……”