gpt4 book ai didi

ios - 此设备不支持提供的配置

转载 作者:行者123 更新时间:2023-12-01 19:32:07 26 4
gpt4 key购买 nike

我有 Iphone 7,并且正在研究像 tiktok 这样的 3D 面部过滤器,但是每当我从 xcode 在应用程序上运行时,它都会显示错误 The provided configuration is not supported on this device并且只显示黑屏

最佳答案

您不能在 iPhone 7 上使用所有 ARKit 功能,某些功能至少需要 A12 处理器,甚至更高。例如:在 iPhone 7 上,您不能使用诸如人物遮挡、 body 跟踪、同时 3 人脸检测或场景重建等功能。

请记住:您必须始终与 if 联系。或 guard声明当前设备是否支持某个功能:

guard let config = arView.session.configuration as? ARWorldTrackingConfiguration
else {
print("You can't run this config on this device.")
}

guard ARWorldTrackingConfiguration.supportsFrameSemantics(.personSegmentationWithDepth)
else {
print("People Occlusion isn't supported here.")
}

config.frameSemantics.insert(.personSegmentationWithDepth)

arView.session.run(config)

关于ios - 此设备不支持提供的配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62070990/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com