Hi i want to implement Image Recognition functionality on my blackberry application. Any one have idea which api can be used to recognize the image. I have used IQEngine Api on Android and IPhone but that api not supported on Blackberry.
Any help..
You can try MobileAcuity 's image recognition sdk for blackberry, I havent used it so I dont know how good it is. I have used their barcode scanning component and its pretty good.
Try it here
Related
I am trying to figure out a way to do speech recognition/speech to text on Xamarin iOS. I have been doing a lot of research and so far it seems like this is a feature only available for Android Xamarin Development.
Does anyone have an idea of how to appraoch this? Any links to resources or projects that have implemented this would be much appreciated!
You can try open ears or dragon speech. There is no built in speech recognition for Xamarin.iOS that I am aware of.
https://github.com/oganix/MonoTouch-OpenEars
Has anyone created a MonoTouch binding for the Nuance Dragon Mobile Speech SDK for iOS?
Update
Since iOS 10 you can now access the speech recognition apis documented below
https://blog.xamarin.com/speech-recognition-in-ios-10/?utm_medium=social&utm_campaign=blog&utm_source=linkedin&utm_content=ios10-speech-recognition
Android has for a long time had their APIs available for speech documented below
https://developer.xamarin.com/guides/android/platform_features/speech/
Is there a way, using Apple's built-in iOS barcode API, to scan the last 5 digits of an add-on barcode?
If not, is there a free SDK solution out that that is known to work well and has stayed up to date with the latest iOS versions? ZBar works but is WAY outdated.
See the comic book example here:
Tried about 10 different online barcode detectors, and neither of them can decode that barcode.
Seems this barcode has some special format which is not supported with current barcode readers...
If your having trouble with Apples Barcode API i suggest trying MLKit from Firebase i am able to scan and get OCR from image with few lines of code.
https://firebase.google.com/docs/ml-kit/ios/read-barcodes
I tried https://github.com/hyperoslo/BarcodeScanner. It is okay with the swift 4.1. Also, It is reading the larger barcode under the direct sales label on left but not the smaller on the right with 00113 label above it. Can you please confirm that these barcodes are valid? As the application from this wrapper is working on other barcodes.
I'm currently writing a hybrid mobile app for iOS and Android using IBM Worklight. I want to add a voice recognition feature to the app but have struggled to find a cordova plugin implementation that works accurately. Currently I have tried the following...
Web Speech API using a JavaScript interface. This hasn't worked because it is not supported in iOS yet.
iSpeech. Using a cordova plugin, I have this working but the iSpeech recognition is so bad it's unusable.
If anyone has any suggestions of plugins to try or free recognition services that would work well that would be great. Better still if anyone has successfully implemented voice recognition in Cordova or Worklight on iOS I'd love to know how you achieved it.
Thanks in advance.
Thanks to those who commented on my question. I have found a work around to my problem that may be useful to some of you. I adjusted my code to use html text inputs, when a user taps the text input to bring up the iOS keyboard they can use the built in voice recognition to add text to the input. See below:
<input type="text" id="searchBox" placeholder="Ask Watson" />
I know this is not a perfect solution but it solved my problem in the specific app I am working on.
I'm planning to develop a simple barcode reader for iOS that will read the barcode and return all the information it can extract from the internet.
So far I decided to use the ZBar SDK in the app and successfully read the barcode which return a decoded string of the barcode.
Now I wonder how can I extract the useful information from it. I have limited knowledge on barcode so I suppose there will be an online database so that I can input the barcode result and fetch the data from it.
Can anyone give me some suggestion?
Thanks in advance.
Zxing the best library for Bar code and QR Code scan It Support both Android and iPhone SDK. This is used by most of the commercial mobile cash application
More Information on ZXING
Also there is anther library
ZBar. Seems to be a very capable library.
Good luck
Chamath Jeevan
Is there any 3rd party API which will provide text to speech facility??
Yes.
The CMU Flite (Festival Lite) speech synthesis library has been ported to iOS and appears to be used in many iPhone and iPad apps in the App store.
Yes. Follow this link for your reference. You can use this as you require. There is iPhone sample in there, but it is easy to convert it to iPad.
And there is also other way with google api using following way.
http://translate.google.com/translate_tts?tl=en&q=Yourtext. But it has certain limitation like 100 chars and also you have to look for commercial usage conditions.
This you can load in UIWebView passing your text.
Hope it helps.