readme.txt
1How to select the proper version of OpenCV Manager
2--------------------------------------------------
3
4Since version 1.7 several packages of OpenCV Manager are built. Every package is targeted for some
5specific hardware platform and includes corresponding OpenCV binaries. So, in most cases OpenCV
6Manager uses built-in version of OpenCV. Separate package with OpenCV binaries is currently used in
7a single rare case, when an ARMv7-A processor without NEON support is detected. In this case an
8additional binary package is used. The new package selection logic in most cases simplifies OpenCV
9installation on end user devices. In most cases OpenCV Manager may be installed automatically from
10Google Play.
11
12If Google Play is not available (i.e. on emulator, developer board, etc), you can install it
13manually using adb tool:
14
15.. code-block:: sh
16
17 adb install OpenCV-2.4.9-android-sdk/apk/OpenCV_2.4.9_Manager_2.18_<platform>.apk
18
19Use the table below to determine proper OpenCV Manager package for your device:
20
21+------------------------------+--------------+----------------------------------------------------+
22| Hardware Platform | Android ver. | Package name |
23+==============================+==============+====================================================+
24| armeabi-v7a (ARMv7-A + NEON) | >= 2.3 | OpenCV_2.4.9_Manager_2.18_armv7a-neon.apk |
25+------------------------------+--------------+----------------------------------------------------+
26| armeabi-v7a (ARMv7-A + NEON) | = 2.2 | OpenCV_2.4.9_Manager_2.18_armv7a-neon-android8.apk |
27+------------------------------+--------------+----------------------------------------------------+
28| armeabi (ARMv5, ARMv6) | >= 2.3 | OpenCV_2.4.9_Manager_2.18_armeabi.apk |
29+------------------------------+--------------+----------------------------------------------------+
30| Intel x86 | >= 2.3 | OpenCV_2.4.9_Manager_2.18_x86.apk |
31+------------------------------+--------------+----------------------------------------------------+
32| MIPS | >= 2.3 | OpenCV_2.4.9_Manager_2.18_mips.apk |
33+------------------------------+--------------+----------------------------------------------------+
34