Opencv: It seems that your device does not support camera(or it is locked)
I use face_detection of opencv 2.4.5 with Android 4.2.2 on my samsung tablet of Android 4.0.4. The application could use the front camera to calibrate my face. However, when I use this application to play video and face_detection simultaneously, it warns that: "It seems that your device does not support camera(or it is locked)". Do you have any idea of what is happening? Actually, I get the code from a previous application, and the application can run smoothly in his computer and tablet, so I guess there may not be any coding problem.
android opencv
add a comment |
I use face_detection of opencv 2.4.5 with Android 4.2.2 on my samsung tablet of Android 4.0.4. The application could use the front camera to calibrate my face. However, when I use this application to play video and face_detection simultaneously, it warns that: "It seems that your device does not support camera(or it is locked)". Do you have any idea of what is happening? Actually, I get the code from a previous application, and the application can run smoothly in his computer and tablet, so I guess there may not be any coding problem.
android opencv
add a comment |
I use face_detection of opencv 2.4.5 with Android 4.2.2 on my samsung tablet of Android 4.0.4. The application could use the front camera to calibrate my face. However, when I use this application to play video and face_detection simultaneously, it warns that: "It seems that your device does not support camera(or it is locked)". Do you have any idea of what is happening? Actually, I get the code from a previous application, and the application can run smoothly in his computer and tablet, so I guess there may not be any coding problem.
android opencv
I use face_detection of opencv 2.4.5 with Android 4.2.2 on my samsung tablet of Android 4.0.4. The application could use the front camera to calibrate my face. However, when I use this application to play video and face_detection simultaneously, it warns that: "It seems that your device does not support camera(or it is locked)". Do you have any idea of what is happening? Actually, I get the code from a previous application, and the application can run smoothly in his computer and tablet, so I guess there may not be any coding problem.
android opencv
android opencv
asked Jan 8 '14 at 4:58
RayRay
613
613
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Just enable camera permission on the device settings. Works for Tango Device Phab2 (23API)
Setting -> Apps -> Your App -> Enable Camera Permission.
add a comment |
I have solved this problem. I added a library to the face_detection codes, and something wrong in "OpenCV Library - 2.4.5/src/org.opencv.android/JavaCameraView.java" The line 127 "mCamera.setParameters(params);" failed to run, so i annotated it, and the warn disappeared.
add a comment |
I had this problem early today. Please, make sure you have placed the camera permissions on your AndroidManifest.xml.
<uses-permission android:name="android.permission.CAMERA"/>
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f20987361%2fopencv-it-seems-that-your-device-does-not-support-cameraor-it-is-locked%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just enable camera permission on the device settings. Works for Tango Device Phab2 (23API)
Setting -> Apps -> Your App -> Enable Camera Permission.
add a comment |
Just enable camera permission on the device settings. Works for Tango Device Phab2 (23API)
Setting -> Apps -> Your App -> Enable Camera Permission.
add a comment |
Just enable camera permission on the device settings. Works for Tango Device Phab2 (23API)
Setting -> Apps -> Your App -> Enable Camera Permission.
Just enable camera permission on the device settings. Works for Tango Device Phab2 (23API)
Setting -> Apps -> Your App -> Enable Camera Permission.
answered Jun 21 '17 at 12:38
Egor TverdokhlebEgor Tverdokhleb
111
111
add a comment |
add a comment |
I have solved this problem. I added a library to the face_detection codes, and something wrong in "OpenCV Library - 2.4.5/src/org.opencv.android/JavaCameraView.java" The line 127 "mCamera.setParameters(params);" failed to run, so i annotated it, and the warn disappeared.
add a comment |
I have solved this problem. I added a library to the face_detection codes, and something wrong in "OpenCV Library - 2.4.5/src/org.opencv.android/JavaCameraView.java" The line 127 "mCamera.setParameters(params);" failed to run, so i annotated it, and the warn disappeared.
add a comment |
I have solved this problem. I added a library to the face_detection codes, and something wrong in "OpenCV Library - 2.4.5/src/org.opencv.android/JavaCameraView.java" The line 127 "mCamera.setParameters(params);" failed to run, so i annotated it, and the warn disappeared.
I have solved this problem. I added a library to the face_detection codes, and something wrong in "OpenCV Library - 2.4.5/src/org.opencv.android/JavaCameraView.java" The line 127 "mCamera.setParameters(params);" failed to run, so i annotated it, and the warn disappeared.
answered Jan 27 '14 at 3:25
RayRay
613
613
add a comment |
add a comment |
I had this problem early today. Please, make sure you have placed the camera permissions on your AndroidManifest.xml.
<uses-permission android:name="android.permission.CAMERA"/>
add a comment |
I had this problem early today. Please, make sure you have placed the camera permissions on your AndroidManifest.xml.
<uses-permission android:name="android.permission.CAMERA"/>
add a comment |
I had this problem early today. Please, make sure you have placed the camera permissions on your AndroidManifest.xml.
<uses-permission android:name="android.permission.CAMERA"/>
I had this problem early today. Please, make sure you have placed the camera permissions on your AndroidManifest.xml.
<uses-permission android:name="android.permission.CAMERA"/>
answered Apr 29 '15 at 19:35
ErivaldoJuniorErivaldoJunior
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f20987361%2fopencv-it-seems-that-your-device-does-not-support-cameraor-it-is-locked%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown