- Mastering OpenCV Android Application Programming
- Salil Kapur Nisarg Thakkar
- 250字
- 2021-07-16 13:36:47
Setting up OpenCV
OpenCV is the short form of Open Source Computer Vision library. It is the most widely used computer vision library. It is a collection of commonly used functions that perform operations related to computer vision. OpenCV has been natively written in C/C++, but has wrappers for Python, Java, and any JVM language, which is designed to create the Java byte code, such as Scala and Clojure. Since most of the Android app development is done in C++/Java, OpenCV has also been ported as an SDK that developers can use to implement it in their apps and make them vision enabled.
We will now take a look at how to get started with setting up OpenCV for the Android platform, and start our journey. We will use Android Studio as our IDE of choice, but any other IDE should work just as well with slight modifications. Follow these steps in order to get started:
- Download Android Studio from https://developer.android.com/sdk/ and OpenCV4Android SDK from http://sourceforge.net/projects/opencvlibrary/files/opencv-android/.
- Extract the two files to a known location.
- Create a normal Android Project and name it
FirstOpenCVApp
. Navigate to File | Import. - Select the
OpenCV_SDK_location/sdk/java/
directory. - Navigate to Build | Rebuild Project.
- Navigate to File | Project Structure.
- Add the OpenCV module to your app by selecting the app module in the left column. Click on the green in the dependencies tab, and finally, select the OpenCV module.
- You are now ready to use OpenCV in your Android project. It should look like this:

- 數(shù)字媒體應(yīng)用教程
- Kubernetes實戰(zhàn)
- Getting Started with PowerShell
- PHP+MySQL網(wǎng)站開發(fā)技術(shù)項目式教程(第2版)
- YARN Essentials
- Banana Pi Cookbook
- Python高效開發(fā)實戰(zhàn):Django、Tornado、Flask、Twisted(第3版)
- Unity Shader入門精要
- Julia Cookbook
- C語言程序設(shè)計同步訓(xùn)練與上機(jī)指導(dǎo)(第三版)
- Python深度學(xué)習(xí):模型、方法與實現(xiàn)
- Julia for Data Science
- Hadoop大數(shù)據(jù)分析技術(shù)
- PHP 8從入門到精通(視頻教學(xué)版)
- Learning Image Processing with OpenCV