I'm trying to capture absolute radiance values on surfaces by using the google tango dev kit. Therefore, I need to know at which exposure/iso settings the camera is currently working. As far as I know, there are a few settings I can pass with the config before connecting to the service.
My first problem is that I'm not able to set these properties.. I found another post (Does setting exposure/ISO in Google Tango config work?) and just used his code to change my config. But the first call already fails and returns -2 (TANGO_INVALID):
TangoConfig_setBool(m_config, "config_color_mode_auto", false);
Do you have any idea why this fails. I enabled config_enable_color_camera, too. Everything is done before connecting to the service.
The next Issues I'm facing are:
- How to alter the exposure settings without reconnecting to the service?
- Is there a proper way to query the exposure and iso value while config_color_mode_auto is enabled?
Thanks very much! Kai