gpt4 book ai didi

android - 相机权限无效

转载 作者:太空狗 更新时间:2023-10-29 13:55:24 25 4
gpt4 key购买 nike

我使用的是 OpenCV4Android 版本 3.0.0。我正在尝试通过 OpenCV lib 访问相机,实际上我设法打开了它。但我目前面临的问题是,当我创建一个新项目并导入 OpenCV lib 时,我无法使用相机,当我收到以下消息时我运行应用程序尽管权限已添加到 list 文件中,如下所示

请让我知道我缺少什么来运行相机??

注意我有几个导入了 OpenCV 的项目,这些项目的相机工作正常...我今天创建新项目时遇到的问题

错误信息

enter image description here

list :

<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.front" android:required="false"/>
<uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

OpenCVLibrary300:

apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "24.0.3"

defaultConfig {
minSdkVersion 19
targetSdkVersion 24
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}

build.gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.example.edgedetectionlaplace_03"
minSdkVersion 19
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
testCompile 'junit:junit:4.12'
compile project(':openCVLibrary300')
}

最佳答案

你已经放了这个

<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.camera.front" android:required="false"/>
<uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>

现在试试这个:

Settings -> Apps -> Your app -> Permissions and enabling the Camera permission ?

然后就像卡迪尔侯赛因说的那样

kill any other apps that are using the camera.

如果没有任何效果,请检查您的设计是否与您的库兼容。

关于android - 相机权限无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40125922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com