XRFrame: getDepthInformation() 方法
XRFrame 接口的 getDepthInformation() 方法返回一个 XRCPUDepthInformation 对象,其中包含当前活动和正在动画的帧的 CPU 深度信息。
语法
js
getDepthInformation(view)
参数
返回值
一个 XRCPUDepthInformation 对象。
异常
NotSupportedErrorDOMException-
如果
"depth-sensing"不在此XRSession的已启用功能列表中,则抛出此异常。 InvalidStateErrorDOMException-
在以下情况下抛出
XRFrame未处于活动或动画状态。仅在requestAnimationFrame()回调中获取深度信息是有效的。- 会话的
depthUsage不是"cpu-optimized"。
示例
获取 CPU 深度信息
js
// Make sure to request a session with depth-sensing enabled
const session = navigator.xr.requestSession("immersive-ar", {
requiredFeatures: ["depth-sensing"],
depthSensing: {
usagePreference: ["cpu-optimized", "gpu-optimized"],
formatPreference: ["luminance-alpha", "float32"],
},
});
// …
// Obtain depth information in an active and animated frame
function rafCallback(time, frame) {
session.requestAnimationFrame(rafCallback);
const pose = frame.getViewerPose(referenceSpace);
if (pose) {
for (const view of pose.views) {
const depthInformation = frame.getDepthInformation(view);
if (depthInformation) {
// Do something with the depth information
renderDepth(depthInformation);
}
}
}
}
规范
| 规范 |
|---|
| WebXR Depth Sensing 模块 # dom-xrframe-getdepthinformation |
浏览器兼容性
加载中…