Skip to content

Commit a2ce406

Browse files
committed
Upgrade to OpenCV 4.5.2.
1 parent 4140eaf commit a2ce406

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
22
# Native OpenCV for Android with Android NDK
33

4-
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.
55
[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)).
66

77
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
1010

1111
| Tool | Version |
1212
| --- | --- |
13-
| [OpenCV](https://opencv.org) | 4.5.0
13+
| [OpenCV](https://opencv.org) | 4.5.2
1414
| [Android Studio](https://developer.android.com/studio) | 4.1.0
1515
| [Android Build Tool](https://developer.android.com/about) | 29.0.3
1616
| [Android NDK](https://developer.android.com/ndk/guides) | r21d
@@ -29,7 +29,7 @@ This sample Android application displays a live camera feed with an OpenCV *adap
2929
* Paste this repository *Github URL*, choose a *project directory* and click next.
3030

3131
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/).
3333
* Unzip downloaded file and put **OpenCV-android-sdk** directory on a path of your choice.
3434

3535
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
5656
* Choose `Toolchain default` as *C++ standard* and click Finish.
5757

5858
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/).
6060
* Unzip downloaded file and put **OpenCV-android-sdk** directory on a path of your choice.
6161

6262
5. Add *OpenCV Android SDK* as a module into your project :

0 commit comments

Comments
 (0)