Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am working on a project where I want to capture an Image on motion detection using Webcam.
Initially I want to start with USB cam and later I want to Integrate the same for IP camera. So please point me to the right direction.
Thanks in advance.
You can check out this Library which has nice samples as well. The samples are sorted with respect to their functionality. You can integrate the functionality and get the desired result. I case you need help with code or stuck somewhere you can ask.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed last month.
Improve this question
Actually I made a camera app by learning on YouTube and other platform but now I want to add some real time filter can anyone tell me how to make a filter that works in real time....? I'm newbie 🙂
Anyone ell me how to make a filter that work live
Here the GitHub demo code you can implement it in your code.
CameraView that's you can try.
You can use this one also and Editor Like WhatsApp.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to make android program :--
As like this picture.
How can I make??
I have to try Animation??or video???
Pls just tell me the process how can I achieve that.
I think the simplest method would be to use the AnimationDrawable class. The process is pretty simple. You would make a series of images in Illustrator, Photoshop, etc. showing the heart in its various stages. Then you would copy them to the /res/drawable folder in your Android project. Then follow the code examples here. As shown, you can specify the duration of each animation frame as XML code.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am developing an application in which English alphabet will be written in gestures format and those alphabets will be written in the text view, but my problem is my app is not detecting the gestures correctly even I have different gestures for the same word.. Is there any file available on the internet for gestures? which I can add in the project? or is there any other way to make the gesture detection accurate?
Please help!
Using different styles for your each word will make your gesture detection accurate.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to create a tutorial for my app that will show the user how to use it. For example when you first run an android device it teaches you how to use the system.
I want my tutorial to just tell the user to swipe the screen to the left and then click on a button.
Check out the ShowcaseView library on Github. I guess that'll fit your needs.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to develop games on android, am good with java.
i already tried using bitmaps and canvas to cook up a sample game, just a ball bouncing in the screen, but had issues with placing more items and stuffs.
I was told to go learn c++, can't i use java to build it? and if so how can i get API and documentation to help me in game development?
(need help thanks.)
You really don't need to know c++ to be able to program games on android. Go follow this tutorial and learn OpenGL ES 2.0:
http://developer.android.com/training/graphics/opengl/environment.html
This will help you in being able to learn shapes and then show you how to animate your shapes. For your purposes, I would say this is a great start.