OLYMPUS AIR camera properties cannot be set

Asked 1 years ago, Updated 1 years ago, 94 views

Android: getVersion()=1.1.0
Android: getBuildNumber() = 20150602

I'm setting up the camera on my tablet (Android).
Cannot be configured.Even if you set it up, it will remain the same when you read it.
The function you are using is

1.SetCameraPropertyValue
2. Read getCameraPropertyValue

Parameters include "WB" by name and <WB/WB_LAMP>.

Is there any protection on it?

olympus-camerakit

2022-09-29 21:41

1 Answers

Probably because the shooting mode (TAKEMODE) remains iAuto.

For example, if you change to P mode and change the settings such as WB, it will be reflected correctly.

//Change shooting mode to P mode
camera.setCameraPropertyValue("TAKEMODE", "<TAKEMODE/P>");
// Change WB to clear weather
camera.setCameraPropertyValue("WB", "<WB/MWB_FINE>");

Olympus Camera Kit Camera Properties List has a description of the shooting modes where you can set each property in the corresponding shooting modes location, so please refer to them.
Also, the ImageCaptureSample sample code attached to the SDK will be helpful.


2022-09-29 21:41

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.