Updated android manager readme file

pull/4132/head
Maksim Shabunin 10 years ago
parent bfa77ff5a4
commit a816a4b964
  1. 36
      platforms/android/service/readme.txt

@ -2,32 +2,22 @@ How to select the proper version of OpenCV Manager
-------------------------------------------------- --------------------------------------------------
Since version 1.7 several packages of OpenCV Manager are built. Every package is targeted for some 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 specific hardware platform and includes corresponding OpenCV binaries. So, in all cases OpenCV
Manager uses built-in version of OpenCV. Separate package with OpenCV binaries is currently used in Manager uses built-in version of OpenCV. The new package selection logic in most cases simplifies
a single rare case, when an ARMv7-A processor without NEON support is detected. In this case an OpenCV installation on end user devices. In most cases OpenCV Manager may be installed automatically
additional binary package is used. The new package selection logic in most cases simplifies OpenCV from Google Play.
installation on end user devices. In most cases OpenCV Manager may be installed automatically from
Google Play.
If Google Play is not available (i.e. on emulator, developer board, etc), you can install it If Google Play is not available (i.e. on emulator, developer board, etc), you can install it
manually using adb tool: manually using adb tool:
.. code-block:: sh adb install <path-to-OpenCV-sdk>/apk/OpenCV_3.0.0_Manager_3.00_<platform>.apk
adb install OpenCV-2.4.9-android-sdk/apk/OpenCV_2.4.9_Manager_2.18_<platform>.apk Use the list below to determine proper OpenCV Manager package for your device:
Use the table below to determine proper OpenCV Manager package for your device: - OpenCV_3.0.0-dev_Manager_3.00_armeabi.apk - armeabi (ARMv5, ARMv6)
- OpenCV_3.0.0-dev_Manager_3.00_armeabi-v7a.apk - armeabi-v7a (ARMv7-A + NEON)
+------------------------------+--------------+----------------------------------------------------+ - OpenCV_3.0.0-dev_Manager_3.00_arm64-v8a.apk - arm64-v8a (ARM64-v8a)
| Hardware Platform | Android ver. | Package name | - OpenCV_3.0.0-dev_Manager_3.00_mips.apk - mips (MIPS)
+==============================+==============+====================================================+ - OpenCV_3.0.0-dev_Manager_3.00_mips64.apk - mips64 (MIPS64)
| armeabi-v7a (ARMv7-A + NEON) | >= 2.3 | OpenCV_2.4.9_Manager_2.18_armv7a-neon.apk | - OpenCV_3.0.0-dev_Manager_3.00_x86.apk - x86
+------------------------------+--------------+----------------------------------------------------+ - OpenCV_3.0.0-dev_Manager_3.00_x86_64.apk - x86_64
| armeabi-v7a (ARMv7-A + NEON) | = 2.2 | OpenCV_2.4.9_Manager_2.18_armv7a-neon-android8.apk |
+------------------------------+--------------+----------------------------------------------------+
| armeabi (ARMv5, ARMv6) | >= 2.3 | OpenCV_2.4.9_Manager_2.18_armeabi.apk |
+------------------------------+--------------+----------------------------------------------------+
| Intel x86 | >= 2.3 | OpenCV_2.4.9_Manager_2.18_x86.apk |
+------------------------------+--------------+----------------------------------------------------+
| MIPS | >= 2.3 | OpenCV_2.4.9_Manager_2.18_mips.apk |
+------------------------------+--------------+----------------------------------------------------+

Loading…
Cancel
Save