I have already created open-CV model. I want add this my android project how can I do this and please help for my project. and please give me a references in that subject area followed. Thank you
For using openCV on Android, that's a big move.
I think you might want to read these first:
OpenCV4Android : Official,
This provides some openCV's function that you can use it in Android(Java)
Android NDK : Setup Guide,
This helps you use your C/Cpp in your app.
Related
I would like to use herumi/mcl library in my Android project. I posted a question on Author's forum and he replied with these two solutions:
1. https://github.com/herumi/bls-eth-go-binary/ provides a static library for Android, which contains mcl functions. You can use them through gomobile .
2. https://github.com/herumi/mcl/tree/master/ffi/java provides JNI of mcl. If you can build libmcljava.so for Android by cross-compile, then you can use mcl such as https://github.com/herumi/mcl/blob/master/ffi/java/MclTest.java.
I think that great solution for me is the second Option, but i absolutely dont know how. I am using Android NDK to call C code to my app, but thats all i know.
I am looking for some fresh tutorial or something like step-by-step, what would help me to use this library in my Android project. I am working on Windows OS.
I need to run a java code for Android inside Rhomobile app. Is there any way i can call the java code. I have seen some of the plugins to interact with native codes for Android.
I tried searching and i did get to this url http://docs.rhomobile.com/rhoconnect/plugin-intro.
But i guess this is not for Rhomobile if i'm not wrong.
I have a library file for my requirement. Is there any way i can use it ?
Yes you can. Have a look at this http://docs.rhomobile.com/rhodes/extensions#native-extensions
The link you get is for RhoConnect ( basically meant for sync operation). You need to look into the native extension for Android : Rewriting the Generated Native Extension Source Code for Android
If you need some more help and support, you can go over
https://developer.motorolasolutions.com/
https://groups.google.com/forum/#!forum/rhomobile
You can also simply post you query here and tag Rhomobile & Rhodes.
Hope this might help you.
I'd like to use some tools for image processing.
One of the requirments is ability to manipulate the image and change it by touch as it appen in the "Plastic Surgery" game by "Kaeria".
How it can be done? where can i find a lib that do so?
Thanks,
Eyal.
You can use Android OpenCv for image processing.Check this link
Android OpenCV is pretty bad on documentation if you are planning to use the JAVA wrapper. I would suggest that you learn to use the inbuilt functions and structure of the API using a C++ implementation and then try to use the JAVA API. Also You could eventually run NATIVE code on the android platform using the NDK.
android opencv should helps. You can download the sdk from the Link
and the configurations available in this link opencv samples
I am interested in moving into Android application development but don't know exactly where to start.I have good basics in C++ and VC#.NET and clear with the concepts of OOPS.
Can anyone please guide me how should i jump into android application development and help me with some resources.Thanks in advance :)
First of all you must have to learn the Java language and some of its Core APIs (java.lang, java.util, java.text, java.io etc.)
Read Basic of Java, use the followin link
Java Tutorial
After reading basic of java, then move to Android Development, Refer the following link
Starting Point for Android
Study it
First of all, you need to download Eclipse and install ADT Plugin inside the Eclipse, run the first "HelloWorld" android project and try to understand the project directory structure.
Check this SO Question:
https://stackoverflow.com/questions/3211193/how-to-learn-developing-android-applications/3211803#3211803
https://stackoverflow.com/questions/3405695/tutorial-tips-trick-for-android
Can any one guide me on how to use this library in Android?
I didn't find any tutorial or example related to this library.
I want to use an ImageView with a remote image while loading with progress spinner.
Any help would be appreciated.
Did you try the getting started guide on the project homepage?
http://code.google.com/p/libs-for-android/wiki/GettingStarted
It seems to contain instructions on adding the libraries to your project, and also build in the example applications. And of course the example applications contain their full source so it shows you how to use the libs in an application.