OpenCV basic tutorial [closed] - iphone

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am a new in iPhone Application development, I wants to use OpenCV in my project. I am googling from last few hour, but not find the start up tutorial for OpenCV mostly links explain the advance programming, So I need help
please provide me good tutorial link for starter.

https://github.com/BloodAxe/opencv-ios-template-project
http://computer-vision-talks.com/2011/08/a-complete-ios-opencv-sample-project/
http://maniacdev.com/2011/08/open-source-sample-project-using-precompiled-opencv-2-3-1/

Here are some links from stackoverflow itself . Please check them out :-
Tutorial for iPhone OpenCV on shape recognising
http://www.eosgarden.com/en/opensource/opencv-ios/documentation/tutorial/
http://computer-vision-talks.com/2011/08/a-complete-ios-opencv-sample-project/

here you find good documentation of opencv
opencv site
opencv docs
eosgarden
List of tutorials in SO Answer

Related

Where to find tutorials on createJS/easelJS [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I can't seem to find any tutorials except those present in the master.
Does anyone have any recommendation, anything would help websites/books/youtube videos ?
have you visited the EaselJS website? Under learning resources, you can find official and community tutorials and a getting started video.
Hope that helps.

How to recognize/detect characters in iOS [duplicate]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a simple (preferably open source) handwriting recognition library for the iPhone/iPad. In my case, I'm only interested in recognizing numbers.
Does anyone know of a good library for this?
You would have to make some efforts to compile but Tesseract is good solution.
For compiling it look http://iphone.olipion.com/cross-compilation/tesseract-ocr. For sample application see http://robertcarlsen.net/tag/tesseract
There are many libraries available for extracting text from images. You can check my answer
For restricting OCR to provide numbers only Tesseract SDK provides method as blacklist and whitelist characters
_tesseract->SetVariable("tessedit_char_whitelist", "0123456789");
Using this method you can restrict only numbers to be recognized.
Hope it helps.

Looking for a good phonegap tutorial for the iphone [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a good Phonegap tutorial for the iphone. I am a beginner and before diving into the various javascript functions it uses I need to learn how to structure the divs on the page.
Any recommendations will be appreciated.
Thanks in advance.
Check out my blog. I have started a phonegap tutorial series - http://hiediutley.com/
The Phonegap wiki has a bunch of tutorials. This page has all tutorials for iOS, Android, and all the rest as well. Here is the tutorial for Xcode 4 and Xcode 3.
My co-worker just wrote a tutorial for how to get started PhoneGap with a simple demo. It might help to get you started with it. Check it out here: http://keyholesoftware.com/2013/03/25/introduction-to-phonegap/
Good luck!
Two good tutorials I found very helpful were these:-
Ray Wenderlich Blog
and
Mobile Tuts plus

Are there any handwriting recognition libraries available for the iPhone? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a simple (preferably open source) handwriting recognition library for the iPhone/iPad. In my case, I'm only interested in recognizing numbers.
Does anyone know of a good library for this?
You would have to make some efforts to compile but Tesseract is good solution.
For compiling it look http://iphone.olipion.com/cross-compilation/tesseract-ocr. For sample application see http://robertcarlsen.net/tag/tesseract
There are many libraries available for extracting text from images. You can check my answer
For restricting OCR to provide numbers only Tesseract SDK provides method as blacklist and whitelist characters
_tesseract->SetVariable("tessedit_char_whitelist", "0123456789");
Using this method you can restrict only numbers to be recognized.
Hope it helps.

iPhone - using YouTube APIs in iPhone app [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I was going through the Google API for the iPhone but couldn't quite understand the use of YouTube API in iPhone apps. Neither could I find any good tutorials.
Can someone please point to documentation/samples which explain how to use the YouTube API in an iPhone app.
Thanks.
this may help http://apiblog.youtube.com/2009/02/youtube-apis-iphone-cool-mobile-apps.html
Try out this link
http://gdata.youtube.com/feeds/api/videos?q=%#&start-index=21&max-results=20&v=2
replace the %# with the text that you are searching it will return you xml parse it and get the data displayed in your controller
Hope this helps