In addition to the posts about Project Tango's color camera configs (auto exposure, iso and exposure time) not working in C or Unity, it also appears that the configs do not work in Java either.
Here is the code I've added to the basic java_video_overlay_example function "startCameraPreview":
// Connect to color camera
tangoCameraPreview.connectToTangoCamera(mTango, TangoCameraIntrinsics.TANGO_CAMERA_COLOR);
// Use default configuration for Tango Service.
TangoConfig config = mTango.getConfig(TangoConfig.CONFIG_TYPE_DEFAULT);
// New Line:
config.putBoolean(TangoConfig.KEY_BOOLEAN_COLORMODEAUTO, false);
mTango.connect(config);
mIsConnected = true;
I'm pretty sure this is how the configs are supposed to be set. Has anyone else had the same issue, or been able to access exposure controls through Tango's Java SDK?
Thanks!