Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install OpenCV Manager on a emulator?

Tags:

android

opencv

Running the OpenCV for Android samples on the emulator requires installation of OpenCV Manager. I have x86 architecture on my device. Many tutorials simply say install OpenCV Manager. Can you please tell me how exactly to do this?

I tried using "adb install" to install it but it didn't work. I was in the correct directory and adb otherwise works fine. Is there any other way to do this?

like image 777
user1210233 Avatar asked Dec 29 '12 00:12

user1210233


1 Answers

OpenCV Manager apk file is included into the OpenCV SDK.

You can install it running:

adb install <...>/OpenCV-2.4.3.2-android-sdk/apk/OpenCV_2.4.3.2_Manager_2.4_x86.apk

(For other SDK releases path will be slightly different but similar)

like image 172
Andrey Kamaev Avatar answered Sep 23 '22 03:09

Andrey Kamaev