英文:
ARCore – Augment an image in realtime with the given coordinates
问题
我正在使用Android Studio中的ARCore。我的应用程序将提供X
、Y
、Z
坐标。我希望在确定的位置渲染3D图像。
-
我如何实现这个目标?
-
当检测到平面并且我点击它时,我能否渲染一个对象?
英文:
I'm using ARCore in Android Studio. My app will provide the X
,Y
,Z
coordinates. I want the 3D image rendered in definite position.
-
How can I achieve this?
-
Am I able to render an object when plane is detected and I tapped it?
答案1
得分: 1
Image Detection
和 Plane Detection
是ARCore或其他AR框架中的不同技术。当您实现ARCore的图像检测功能以在场景中放置3D模型时,可以使用以下代码。
如果您想要实现平面检测功能,请阅读Google的文章,其中包含关于平面检测以及射线投射和命中的信息。
英文:
Image Detection
and Plane Detection
are different technologies in ARCore or other AR framework. When you implement ARCore's image detection feature for placing a 3D model in a scene you can use the following code.
If you want to implement a plane detection feature read Google article that contains info not only about plane detection but also about raycasting and hits.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论