0

I wants to virtually add foot ball and detect and tracking the foot so that we can simulate the kick to the ball.

Can any one please suggest the way achieve it in iOS?

idev
  • 311
  • 3
  • 10
  • Did it really work for you? I'm trying to achieve thing of the same kind, but Vision doesn't seem to be able to track hands/feets. What approach do you use? – s1ddok Jul 22 '17 at 12:38
  • Check this VIDEO https://www.youtube.com/watch?v=kcsCf4SlFLs – Akhzar Nazir Feb 20 '19 at 03:11

1 Answers1

0

I think you'll have to have your own CoreML model that identify where a foot is in an image, and pass it the frames captured by the camera and identify where there is a foot. ARKit doesn't do that and there's no foot recognition built in iOS 11

Guig
  • 9,891
  • 7
  • 64
  • 126
  • Hi Guig, Thanks for your replace. I have identified that we can use Vision framework to track the real world object. I have created small demo for the same. but now we need to add some physic to the foot but coordinate system of vision tracked object and the ARKit world is different. I have posted different question for the same.[link](https://stackoverflow.com/questions/44944581/how-to-transform-vision-framework-coordinate-system-into-arkit) – idev Jul 06 '17 at 09:19