Before Closing question: I've already gone thorough the other SO answers, but none of them showing how to fix this with Android Studio.
I am using opencv library to detect cards in my application. The Application is like Document scanner but it uses JavaCameraView instead of image bitmap.
mOpenCvCameraView = (CameraBridgeViewBase) findViewById(R.id.live_camera_frame);
My problem is, on using JavaCameraView
it always asks for installing OpenCV Manager from play store.
Even After following the steps of openCV static initialization in android studio it is asking me for download openCV manage APK from playstore. I am using android studio 1.5 and opencv library 3.1.0
Can anyone please tell how to use OpenCV Camera without installing Opencv manager as standalone app?
As of summury, I dont want user to be prompted for dialog as in image. If we can include openCV library as a part of project and if we can use it without installation.
I followed steps here application-development-with-static-initialization but it is for eclipse and I am using android studio. I tried the same thing for eclipse but then it is giving error in standard openCV library that class not found.