3

现在我们面临的问题是,带有黑白传感器的华为 P9 能够拍摄照片,但不能拍摄视频。我想写一个快速而肮脏的解决方案来让第二个摄像头工作,但发现手机只有“2”个摄像头(前置/后置?!)

有人知道如何访问黑白传感器吗?我知道,CAM API 2 还没有双摄像头支持。华为开发者页面建议使用 API/SDK,但按钮显示为灰色。

非常感谢任何帮助!

4

1 回答 1

2

我找到了一个已经包含在“FreedCam”应用程序中的解决方法。华为有一些隐藏参数:

Regarding P9, it'sinteresting to see, that it shows only two cameras even though it has3. Any idea if the camera API 2 has the ability to use only the black and white sensor?

com.huawei.device.capabilities.availbaleDualPrimary
com.huawei.capture.metadata.dualSensorMode

在凸轮 1

hw-dual-primary-supported=primary,secondary,dual //primary =color, secondary = mono
hw-dual-primary-mode=primary

所以你不能选择它作为第三台相机。

看看这里: https ://github.com/troop/FreeDcam/blob/42152a8e6b948dc1a05ebb99ecc6fe999c953b1e/app/src/main/java/freed/cam/featuredetector/Camera1FeatureDetectorTask.java

于 2017-08-02T09:43:54.080 回答