https://github.com/arrayfire/androidcl
Sample app that runs OpenCL kernels to process camera feed on Android devices
https://github.com/arrayfire/androidcl
Last synced: 26 days ago
JSON representation
Sample app that runs OpenCL kernels to process camera feed on Android devices
- Host: GitHub
- URL: https://github.com/arrayfire/androidcl
- Owner: arrayfire
- Created: 2014-05-15T23:15:23.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-02-19T15:36:18.000Z (about 10 years ago)
- Last Synced: 2025-07-08T08:44:46.832Z (9 months ago)
- Language: C++
- Homepage:
- Size: 92.8 KB
- Stars: 76
- Watchers: 9
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
androidcl
=======
Sample app that runs OpenCL kernels to process camera feed on Android devices
File Structure
--------------
* assets (contains the opencl kernels source file)
* jni (JNI source code that helps run opencl kernels and the necessary native c/c++ code)
* src (java source files)
How to build the native code?
-----------------------------
Run the command `ndk-build` from android application project root folder. If you found any issues with code, you are welcome to submit a fix or let us know so that we can fix it. Thank you.
How to build java code?
-----------------------
If you are aware of ant build tool, run the command `ant debug install` with your testing mobile device attached to your development machine. That should do a debug build and install it on to your testing device.
If you are not aware of `ant`, you can export this entire droidcl repository as an application in eclipse that has the capability to develop android applications. Rest of it is similar to how you build any other app on eclipse.