As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
can anyone give me sample code to transfer photos from one iphone to another using bluetooth
Your best bet would to use GameKit, which greatly simplifies connecting multiple devices over Bluetooth & transfering data. I can't remember having seen an Apple sample which does that, but it certainly would be possible. This is exactly what GameKit was intended for, peer-to-peer connectivity, not only limited to gaming.
You'll probably have to split the data of the image and send little chunks to the other device, which can reassemble the chunks to form the original file once finished.
http://developer.apple.com/iphone/library/documentation/NetworkingInternet/Conceptual/GameKit_Guide/Introduction/Introduction.html
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is it possible to detect if a person is drunk via image recognition or face-scanning? If it's possible, is there an API available for that?
You could try to code again the accelerometer. Maybe a drunk person is unable to hold the phone still??
http://www.technobuffalo.com/2011/05/15/introduction-to-ios-development-playing-with-the-accelerometer/
This is a RESTful face recognition api and maybe what you want http://www.faceplusplus.com . But I don't know whether it can detect drunk face.
OpenCV! Haartraining!
FYI: I recommend you to work haartraining with something different concurrently because you have to wait so many days during training (it would possibly take one week). I typically experimented as 1. run haartraining on Friday 2. forget about it completely 3. see results on next Friday 4. run another haartraining (loop).
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm making a iOS app like Talking Tom and unable to record only human voice. It gets so much background noise along with the human voice and hence its not, accurate like Talking Tom.
I wonder there must some record settings be present to use with AVAudiorecorder which would help me in this context. I am just using the default record settings for now with AVAudioRecorder.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am developing an iPhone app with :
offline map
offline routing
like : mtrip, offMap ...
http://www.offmaps.com/
I research alot (routeme, navit ...):
https://github.com/route-me/route-me
But i can not find any frame work or good solution for Offline Routing.
Can anyone suggest some idea, framework to use (free or paid) ?
Thanks alot
http://www.routino.org is the solution.
This is pretty late, but I thought I'd chip in here since no one else has.
You may want to take a look at Waze's offline routing algorithm: http://www.waze.com/wiki/index.php/How_Waze_calculates_routes . I must warn you, their open source implementation is under the GPL v2.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
my question is:
would be feasible to modify the software to get calls? I intend to capture the action of the call attempt to operate accordingly.
Sorry for not being more explicit
#user449303
You cant modify the default apps comes with iPhone.
but you can handle the event like missed call,call ended,call failed etc..
It is not possible to manipulate the method of making or receiving of phone calls on the iphone (using publically available APIs). An app can initiate a phone call but the phone call will be made using the Apple call application.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I would like to implement a project in which the recorded audio s converted into text.
I could do this using mturk where the recorded audio is uploaded and stored some where in cloud and the link is forwarded to the mturk but this would take longer time and it would be better if I could implement anything that does this task instantly and from iphone itself.
Is there any ways to do this ? DO i get some custom framework to work with voice so that it converts the audio into text.
Your best bet is looking at something like
OpenEars
http://www.politepix.com/openears/
You can use that to do speech recognition and text to speech and has some instructions on how to implement with iPhone