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 took a picture from iPhone camera.Now I want to scan the image like X-Ray scanning. Let consider I took a picture of an arm and then by programming/Algorithm it will scan the photo and will display the bone inside the arm. Are there any image processing library which can do similar type of thing?
I have tried to get the upper thing by several things provided by apple using core image but did not get anything which I am looking for.
https://developer.apple.com/library/mac/#documentation/graphicsimaging/Conceptual/CoreImaging/ci_intro/ci_intro.html
Does anybody have any solutions regarding this?
Thanks
No. What you are asking for is fundamentally impossible -- the iPhone camera cannot see through solid objects. (And I can't believe I just had to say that.)
Related
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 am developing an iOS application in which I provide a facility to find the distance, average speed, calories, time etc. according to a walking path.
Now I want to find the elevation of my walking according to distance and speed. I also want to draw the elevation graph of my walking path. I have searched a lot for that but I can't find a solution.
You can use the google elevation api
It returns the data in JSON format. You just need to add SBJSON to your xcode project. And then send the NSURLReuest in the following manner :
http://maps.googleapis.com/maps/api/elevation/json?locations=39.7391536,-104.9847034&sensor=true
Everything from here is just a cakewalk if you know how to parse JSON response :)
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 was wondering how their is no sufficient resources for camera api of iOS .
I want to use camera api in me iphone app .
I have 2 basic requeirment .
1. want to capture image .
2. want to see that capture image into gallery.
There are plenty of resources, you better search around before posting such questions.
Have a look at Camera Programming Topics for iOS
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 recently found this app, called Atoms in Motion, I want to use the same kind of visualisation in a different app, does anyone know how the real-time visualisation would be done, or have any suggestions for a language I could use to do this? The user needs to be able to interact with the app, for example in Atoms in Motion you can swipe your finger to increase the temperature.
Cheers for any help
http://www.raywenderlich.com/457/intro-to-box2d-with-cocos2d-tutorial-bouncing-balls
In a few words,
1) download cocos2d-iphone
2) use chipmunk or box2d (both included in cocos2d-iphone) to simulate mechanics you need.
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 want to write an augmented reality application on iOS 5.
But I have one problem. I can't find simple implementation code of augmented reality.
I anyone can share the link, please do this.
http://www.musicalgeometry.com/?p=1273
There is one example of using the camera overlay. However I'm not exactly sure what you're expecting, the question is kind of vague.
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.
How do I add effect (e.g. lomo) to a photo on iOS?
To make it simple, I wanna try to make an iPhone app which is similar to those photography apps, and I want a tutorial to start with.
As coreImage framework is not present in iphone (atleast upto iOS 4.0), you will have to do image filtering by hand..You have to iterate through each pixel in an image and work on it..This thread discussed about various image filtering effects in iphone and is very useful..These guys say they are successful in porting imageMagick to iOS but I never tried that..Also I asked a question about implementing polaroid filter in iOS, though it didnt get a good answer, the question itself might be helpful..