似乎您的设备不支持相机(或已锁定)
2022-09-02 11:10:40
Android opencv
示例和教程运行良好,突然有一天我得到了所有这些:
请帮助,我如何解决它?"It seems that your device does not support camera (or it is locked). The application will be closed"
我已经重新安装了opencv并再次导入并制作了新的模拟器,但问题仍然存在。
Android opencv
示例和教程运行良好,突然有一天我得到了所有这些:
请帮助,我如何解决它?"It seems that your device does not support camera (or it is locked). The application will be closed"
我已经重新安装了opencv并再次导入并制作了新的模拟器,但问题仍然存在。
转到您的设备设置 - >应用 - >您的应用 - >权限 - >打开相机权限。
为我工作..
检查 AndroidManifest 中的相机权限.xml。
<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera"/>
<uses-feature android:name="android.hardware.camera.autofocus"/>
<uses-feature android:name="android.hardware.camera.front"/>
<uses-feature android:name="android.hardware.camera.front.autofocus"/>
它为我工作..