Ask Your Question

GGILOYAN's profile - activity

2018-02-05 04:44:25 -0600 received badge  Popular Question (source)
2014-03-23 13:38:45 -0600 commented answer openCV VideoCapture isOpened() returns false on Android

I think if path was incorrect then application doesn't compile and release apk file. I am using Qt Creator and that code does works for windows. It does't work only on Android!

2014-03-23 08:51:47 -0600 commented answer openCV VideoCapture isOpened() returns false on Android

Yes I tried -1 and 1. It's again doesn't work :(

2014-03-22 15:06:36 -0600 asked a question openCV VideoCapture isOpened() returns false on Android

Hi everyone Please help

I whant to record video using openCV on Android device, but always VideoCapture isOpened returns false

VideoCapture cap(0); //VideoCapture cap(CV_CAP_ANDROID_BACK);

if(!cap.isOpened()) { QMessageBox::information(this, tr("error"), "error on open"); } else { QMessageBox::information(this, tr("success"), "is opened"); }