OCR like Auto Cheat application [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am intending to write a simple OCR engine for iPhone like "Auto Cheat" application which scans game board of "words with friends". How should I go about doing it? Are there any source codes available for me to use and alter it according to my need? I am a newbie to this OCR thingy. Pls help.
Thanks

You need to check out OpenCV for iPhone. This question: Tutorial for iPhone OpenCV on shape recognising, has some links that will help you out. Keep in mind if you have never worked with OpenCV before this is not a easy project to start with. Good Luck!

Related

Coding standards for developing iphone app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am newbie in iPhone development.I want to start a project and want to know coding standards of objective-C like naming, casting etc.Thanks
Start with reading Apple documentation on the iOS Dev Center. It contains a wealth of howtos, tutorials and technical stuff.
If you are starting fresh and want to learn the basics, Ray Wenderlich has some great guides out there, especially for people new to the language. You could try starting with this tutorial he has created. Enjoy the ride :)
Google also has an Objective-C style guide here
Some of its rules might be questionable, but it is nicely succinct and covers most of the key language constructs.

What's the technology behind Skype's anit-shake video recording? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Skype added an anti-shake feature in it's video conference app on iPhone. How can that be done?
This is quite a complicated thing to pull off, but it's probably a combination of some powerful blur detection/removal algorithms, and the gyroscope. I would start by looking into how to detect motion with the iPhone, and see what kind of results you can get with that. If it's not enough, start looking into shift/blur direction detection algorithms. This is not a trivial problem, but is something that you could probably accomplish given enough time. Hope that Helps!

how getback source code file of app? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have an app in my iPhone. Now i want to get source code of that app.My mean that how get source file of app? what is the processor so that i get information of app which is in my iphone?
You cannot. If you wrote the application, hopefully you didn't delete the source code... if it isn't, it's not yours to look at.
If this app was made with xcode then you canot get the source off the app as its compiled to a native binary format, the only possible way is to disassemble but you have to be a good knowledge of assembly language to understand the code.
If this app was made with another tool maybe it can be possible but I dont think it would be easy.

Video conference in iPhone app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to implement a kind of video conference on the iPhone. I know that the Faceti e API comes available sometime I can't wait for that..
Does somebody know where to start? Or some sample code would be very welcome!
Thanks in advance!
This website listed some source codes of real apps, including a "Two-way video conferencing for iPhone"
I would start reading this guide it contains brief introduction to the video recording.
Briefl just use UIImagePickerController to record a movie.
Encrypt it and transfer it over the network.

can any one give me the url's where i get best sample code for iphone as well as iPad applications? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i am working as iPhone Application Developer.I want to Learn new things in iphone so please guiding me i want some sample code as well as some Tutorials so i get proper knowledge.Please help me....
The iCode Blog has a lot of good tutorials.
http://adeem.me/blog/ is a good website for beginners.
Lots of sample codes are available from Apple iPhone Dev Center. You may need to register to access them.