mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
2.3 KiB
34 lines
2.3 KiB
12 years ago
|
How to select the proper version of OpenCV Manager
|
||
|
--------------------------------------------------
|
||
12 years ago
|
|
||
12 years ago
|
Since version 1.7 several packages of OpenCV Manager are built. Every package is targeted for some
|
||
|
specific hardware platform and includes corresponding OpenCV binaries. So, in most cases OpenCV
|
||
|
Manager uses built-in version of OpenCV. Separate package with OpenCV binaries is currently used in
|
||
|
a single rare case, when an ARMv7-A processor without NEON support is detected. In this case an
|
||
|
additional binary package is used. The new package selection logic in most cases simplifies OpenCV
|
||
|
installation on end user devices. In most cases OpenCV Manager may be installed automatically from
|
||
|
Google Play.
|
||
12 years ago
|
|
||
12 years ago
|
If Google Play is not available (i.e. on emulator, developer board, etc), you can install it
|
||
|
manually using adb tool:
|
||
12 years ago
|
|
||
12 years ago
|
.. code-block:: sh
|
||
12 years ago
|
|
||
12 years ago
|
adb install OpenCV-2.4.5-android-sdk/apk/OpenCV_2.4.5_Manager_2.7_<platform>.apk
|
||
12 years ago
|
|
||
|
Use the table below to determine proper OpenCV Manager package for your device:
|
||
|
|
||
12 years ago
|
+------------------------------+--------------+---------------------------------------------------+
|
||
|
| Hardware Platform | Android ver. | Package name |
|
||
|
+==============================+==============+===================================================+
|
||
12 years ago
|
| armeabi-v7a (ARMv7-A + NEON) | >= 2.3 | OpenCV_2.4.5_Manager_2.7_armv7a-neon.apk |
|
||
12 years ago
|
+------------------------------+--------------+---------------------------------------------------+
|
||
12 years ago
|
| armeabi-v7a (ARMv7-A + NEON) | = 2.2 | OpenCV_2.4.5_Manager_2.7_armv7a-neon-android8.apk |
|
||
12 years ago
|
+------------------------------+--------------+---------------------------------------------------+
|
||
12 years ago
|
| armeabi (ARMv5, ARMv6) | >= 2.3 | OpenCV_2.4.5_Manager_2.7_armeabi.apk |
|
||
12 years ago
|
+------------------------------+--------------+---------------------------------------------------+
|
||
12 years ago
|
| Intel x86 | >= 2.3 | OpenCV_2.4.5_Manager_2.7_x86.apk |
|
||
12 years ago
|
+------------------------------+--------------+---------------------------------------------------+
|
||
12 years ago
|
| MIPS | >= 2.3 | OpenCV_2.4.5_Manager_2.7_mips.apk |
|
||
12 years ago
|
+------------------------------+--------------+---------------------------------------------------+
|