OpenCV C++ Xcode on Mac Mojave error NSCameraUsageDescription











up vote
-1
down vote

favorite












I have installed the opencv on MacPro and am trying to write a program which allow me to activate the cam, it is only to test opencv it build successfully, however, the cam is not on and I receive this message




saved enable noise cancellation setting is the same as the default(=1) pentest[30782:364297] [access] This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data




my code is:



#include <iostream>
#include<opencv2/opencv.hpp>
using namespace cv;
int main(int argc, const char * argv) {
// insert code here...
VideoCapture cap(0);
while(true){
Mat Webcam;
cap.read(Webcam);
imshow("webcam",Webcam);
}
return 0;
}









share|improve this question
























  • What have you tried to solve this: The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data)?
    – Asu
    Nov 11 at 21:55










  • can you explain what do you mean?
    – Naif
    Nov 11 at 22:13










  • The OS seems to indicate to you that your application should provide this information in particular. I don't know anything about macOS, but my point is that you should edit your post to explain what you have tried to do to solve this error and the problem you're encountering while trying to fix it.
    – Asu
    Nov 11 at 22:17










  • I meet the same problem today and solved with this method: stackoverflow.com/questions/53190412/…
    – bigphess
    Nov 21 at 6:36















up vote
-1
down vote

favorite












I have installed the opencv on MacPro and am trying to write a program which allow me to activate the cam, it is only to test opencv it build successfully, however, the cam is not on and I receive this message




saved enable noise cancellation setting is the same as the default(=1) pentest[30782:364297] [access] This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data




my code is:



#include <iostream>
#include<opencv2/opencv.hpp>
using namespace cv;
int main(int argc, const char * argv) {
// insert code here...
VideoCapture cap(0);
while(true){
Mat Webcam;
cap.read(Webcam);
imshow("webcam",Webcam);
}
return 0;
}









share|improve this question
























  • What have you tried to solve this: The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data)?
    – Asu
    Nov 11 at 21:55










  • can you explain what do you mean?
    – Naif
    Nov 11 at 22:13










  • The OS seems to indicate to you that your application should provide this information in particular. I don't know anything about macOS, but my point is that you should edit your post to explain what you have tried to do to solve this error and the problem you're encountering while trying to fix it.
    – Asu
    Nov 11 at 22:17










  • I meet the same problem today and solved with this method: stackoverflow.com/questions/53190412/…
    – bigphess
    Nov 21 at 6:36













up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I have installed the opencv on MacPro and am trying to write a program which allow me to activate the cam, it is only to test opencv it build successfully, however, the cam is not on and I receive this message




saved enable noise cancellation setting is the same as the default(=1) pentest[30782:364297] [access] This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data




my code is:



#include <iostream>
#include<opencv2/opencv.hpp>
using namespace cv;
int main(int argc, const char * argv) {
// insert code here...
VideoCapture cap(0);
while(true){
Mat Webcam;
cap.read(Webcam);
imshow("webcam",Webcam);
}
return 0;
}









share|improve this question















I have installed the opencv on MacPro and am trying to write a program which allow me to activate the cam, it is only to test opencv it build successfully, however, the cam is not on and I receive this message




saved enable noise cancellation setting is the same as the default(=1) pentest[30782:364297] [access] This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data




my code is:



#include <iostream>
#include<opencv2/opencv.hpp>
using namespace cv;
int main(int argc, const char * argv) {
// insert code here...
VideoCapture cap(0);
while(true){
Mat Webcam;
cap.read(Webcam);
imshow("webcam",Webcam);
}
return 0;
}






c++ xcode opencv






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 12 at 1:40









Cœur

17.2k9102141




17.2k9102141










asked Nov 11 at 21:45









Naif

61




61












  • What have you tried to solve this: The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data)?
    – Asu
    Nov 11 at 21:55










  • can you explain what do you mean?
    – Naif
    Nov 11 at 22:13










  • The OS seems to indicate to you that your application should provide this information in particular. I don't know anything about macOS, but my point is that you should edit your post to explain what you have tried to do to solve this error and the problem you're encountering while trying to fix it.
    – Asu
    Nov 11 at 22:17










  • I meet the same problem today and solved with this method: stackoverflow.com/questions/53190412/…
    – bigphess
    Nov 21 at 6:36


















  • What have you tried to solve this: The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data)?
    – Asu
    Nov 11 at 21:55










  • can you explain what do you mean?
    – Naif
    Nov 11 at 22:13










  • The OS seems to indicate to you that your application should provide this information in particular. I don't know anything about macOS, but my point is that you should edit your post to explain what you have tried to do to solve this error and the problem you're encountering while trying to fix it.
    – Asu
    Nov 11 at 22:17










  • I meet the same problem today and solved with this method: stackoverflow.com/questions/53190412/…
    – bigphess
    Nov 21 at 6:36
















What have you tried to solve this: The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data)?
– Asu
Nov 11 at 21:55




What have you tried to solve this: The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data)?
– Asu
Nov 11 at 21:55












can you explain what do you mean?
– Naif
Nov 11 at 22:13




can you explain what do you mean?
– Naif
Nov 11 at 22:13












The OS seems to indicate to you that your application should provide this information in particular. I don't know anything about macOS, but my point is that you should edit your post to explain what you have tried to do to solve this error and the problem you're encountering while trying to fix it.
– Asu
Nov 11 at 22:17




The OS seems to indicate to you that your application should provide this information in particular. I don't know anything about macOS, but my point is that you should edit your post to explain what you have tried to do to solve this error and the problem you're encountering while trying to fix it.
– Asu
Nov 11 at 22:17












I meet the same problem today and solved with this method: stackoverflow.com/questions/53190412/…
– bigphess
Nov 21 at 6:36




I meet the same problem today and solved with this method: stackoverflow.com/questions/53190412/…
– bigphess
Nov 21 at 6:36

















active

oldest

votes











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',
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253563%2fopencv-c-xcode-on-mac-mojave-error-nscamerausagedescription%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253563%2fopencv-c-xcode-on-mac-mojave-error-nscamerausagedescription%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Guess what letter conforming each word

Port of Spain

Run scheduled task as local user group (not BUILTIN)