You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A tutorial for setting up OpenCV 4.5.0 (and other 4.x.y versions) for Android in [Android Studio](https://developer.android.com/studio) with Native Development Kit (NDK) support.
4
+
A tutorial for setting up OpenCV 4.5.2 (and other 4.x.y versions) for Android in [Android Studio](https://developer.android.com/studio) with Native Development Kit (NDK) support.
5
5
[Android NDK](https://developer.android.com/ndk) enables you to implement your [OpenCV](https://opencv.org) image processing pipeline in C++ and call that C++ code from Android Kotlin/Java code through JNI ([Java Native Interface](https://en.wikipedia.org/wiki/Java_Native_Interface)).
6
6
7
7
This sample Android application displays a live camera feed with an OpenCV *adaptive threshold* filter applied on each frame. The OpenCV *adaptive threshold* call is performed in C++.
@@ -10,7 +10,7 @@ This sample Android application displays a live camera feed with an OpenCV *adap
@@ -29,7 +29,7 @@ This sample Android application displays a live camera feed with an OpenCV *adap
29
29
* Paste this repository *Github URL*, choose a *project directory* and click next.
30
30
31
31
4. Install *OpenCV Android release* :
32
-
* Download [OpenCV 4.5.0 Android release](https://sourceforge.net/projects/opencvlibrary/files/4.5.0/opencv-4.5.0-android-sdk.zip/download) or download latest available Android release on [OpenCV website](https://opencv.org/releases/).
32
+
* Download [OpenCV 4.5.2 Android release](https://sourceforge.net/projects/opencvlibrary/files/4.5.2/opencv-4.5.2-android-sdk.zip/download) or download latest available Android release on [OpenCV website](https://opencv.org/releases/).
33
33
* Unzip downloaded file and put **OpenCV-android-sdk** directory on a path of your choice.
34
34
35
35
5. Link your *Android Studio* project to the *OpenCV Android SDK* you just downloaded :
@@ -56,7 +56,7 @@ Here are the steps to follow to create a new Android Studio project with native
56
56
* Choose `Toolchain default` as *C++ standard* and click Finish.
57
57
58
58
4. Install *OpenCV Android release* :
59
-
* Download [OpenCV 4.5.0 Android release](https://sourceforge.net/projects/opencvlibrary/files/4.5.0/opencv-4.5.0-android-sdk.zip/download) or download latest available Android release on [OpenCV website](https://opencv.org/releases/).
59
+
* Download [OpenCV 4.5.2 Android release](https://sourceforge.net/projects/opencvlibrary/files/4.5.2/opencv-4.5.2-android-sdk.zip/download) or download latest available Android release on [OpenCV website](https://opencv.org/releases/).
60
60
* Unzip downloaded file and put **OpenCV-android-sdk** directory on a path of your choice.
61
61
62
62
5. Add *OpenCV Android SDK* as a module into your project :
0 commit comments