Mano
Mano

Reputation: 740

Displaying a Walkthrough using ARKit in ios

I have got a requirement of a walkthrough of a medical device through ARKit. The requirement is like, we have to feed the images of the device to the app to train it about the device. Then once we show the ARKit app over the medical device, it should show a walkthrough of the medical device in the app's camera. It should highlight each button of the device and describe about it. I have been trying it around with the World Tracking and Image Tracking. Can someone guide me through with some links or so?

Upvotes: 0

Views: 370

Answers (1)

Roshan
Roshan

Reputation: 732

Basically, what I am understanding is you need to detect the medical machine which itself a 3D object so what you can do is Apple itself provide a scanner app to make a 3D model of an object (below is the download link)

https://developer.apple.com/documentation/arkit/scanning_and_detecting_3d_objects

Which will give you the .arobject file after successful scanning

and also you need to create a 3d file of the medical machine with a complete description of it or .dae file of the same medical machine using some designing tool to show in SCNScene after successful detection of the object.

Below are the reference link tutorial on how to implement the same:

https://blog.usejournal.com/an-introduction-to-arkit-2-object-scanning-68963b9be43a

Video link for same: https://www.youtube.com/watch?v=FEqBW3cKF2k

Hope this helps you.

Upvotes: 2

Related Questions