Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I've written a code using OpenCV in C/C++ to process an image, now I want to port the application to Android (choose file from SD card) then process the image.
Is there an easy way to reuse the code I've written directly in the Android project?
There's an OpenCV4Android version that you can use (see here).
There are samples projects that you can import into Eclipse ADT in the OpenCV4Android package. Try them!
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
Is it possible to adapt this java code from this webpage http://www.dreamincode.net/forums/topic/27950-steganography/ to be used on the android sdk.
It has ImageIO, WritableRaster and things from java.awt. If its possible please tell me how!
Thanks
Is it possible to adapt this java code from this webpage http://www.dreamincode.net/forums/topic/27950-steganography/ to be used on the android sdk.
Is steganography possible using the Android SDK? Yes. You would manipulate the byte[] of a Bitmap, either in Java code, in native code via the NDK, or perhaps using Renderscript Compute.
Can you perhaps leverage the steganographic algorithms from that code when you write your Android implementation? Presumably yes.
However, as you note, that code depends heavily upon classes that are not part of Android, which is why would you be better served starting with the algorithm and creating a native Android implementation from there, rather than trying to "adapt" the AWT-dependent Java code directly.
Or, see if somebody already has an Android steganography library that you can use.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have a Scala module (library) which I want to use for my Android application. Is it possible? If yes, how do I do that?
Yes, it's certainly possible. You just need to include the Scala standard library as well and use ProGuard to remove its unused parts and decrease the size of your application. See e.g. http://scala-ide.org/docs/tutorials/androiddevelopment/index.html (for Eclipse) and IntelliJ Idea 12 + Android + Scala nowadays (for IDEA).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Been trying to populate my phonegap app with an sqlite database. I have confirmed the database with the SQLite Browser for windows. Have placed this in the assets folder. I have seen several plugins that claim to offer this functionality as standard, and they all haven't worked.
I am using the sqlitePlugin. How do i get this working simply.
Thanks
https://github.com/cugwuh182/New_School
Can you give a try to this. http://gauravstomar.blogspot.in/2011/08/prepopulate-sqlite-in-phonegap.html
If that don't work for you, check step - 4 & 5 over here http://www.raymondcamden.com/index.cfm/2012/7/27/Guest-Blog-Post-Shipping-a-populated-SQLite-DB-with-PhoneGap
Please share your view if it don't work. :)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I want to add the code https://android.googlesource.com/platform/frameworks/opt/datetimepicker/+/71492ab60892087f3e989b876b82f5c0249b3b14/src/com/android/datetimepicker to my project and I couldn't find a way to download it as a library. How can I do that?
Is there another way to use this code in my project?
I couldn't find a way to download it as a library
That is because it is not a library. It is a random hunk of source code.
Is there another way to use this code in my project?
Download the source files, add them to your project, and fix up any references to things that you do not have access to. If the code depends on resources, you will have to try to find those in the Android source code base and blend them into your project as well.
This is not a library project and if you want to use it in your project copy the project to your workspace.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm developing an application which scans the qr code ,get the phone number from that and send sms to a particular person..
i searched a lot and cannot find a proper answer to that.
I need to develop it within my project by import zxing package.
please help me what are the steps to develop a qr code reader using zxing...
You can also try Zbar. It is easy to integrate and use. See this reference
https://github.com/DushyanthMaguluru/ZBarScanner.
Let me know if you could integrate it.