Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从苹果的对象扫描示例代码创建了 .arobject 文件。
现在我想知道有没有办法将此 .arobject 文件转换为 .usdz 文件?
不,在 ARKit 5.0 及更早版本中,您无法将.arobject文件转换为.usdz文件格式(反之亦然)。这是因为.arobject文件仅包含识别扫描的真实世界对象所需的空间特征信息,它不是该对象的可显示 3D 重建网格。换句话说,.arobject包含稀疏点云,而不是密集点云。
.arobject
.usdz
如果您想从密集点云创建 3D 模型,您需要一个特殊的 RealityKit API。查看这篇文章和这篇文章了解更多详情。